:root {
  --bone-canvas: #F6F4EC;
  --rice-parchment: #F9F7F1;
  --cotton-linen: #FFFFFF;
  --wet-coal: #303030;
  --coal-deep: #1A1614;
  --carbon-pit: #1C1A18;
  --kinovar-red: #E34A2F;
  --kinovar-glow: #C73E25;
  --dry-graphite: #7A706B;
  --line-ink: rgba(48, 48, 48, 0.28);
  --line-ink-strong: rgba(48, 48, 48, 0.55);
  --morning-mist: rgba(246, 244, 236, 0.96);
  --blade-shadow: 4px 6px 0px rgba(28, 20, 18, 0.06);
  --blade-shadow-hot: 8px 12px 0px rgba(227, 74, 47, 0.18);
  --grid-line: rgba(48, 48, 48, 0.03);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--coal-deep);
  background-color: var(--bone-canvas);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

strong, p, a, span, li, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-weight: 900;
  color: var(--coal-deep);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--coal-deep);
  margin-bottom: 1em;
}

a {
  color: var(--coal-deep);
  text-decoration: none;
  transition: color 0.28s ease;
}

a:hover {
  color: var(--kinovar-red);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

main {
  display: block;
}

.zen-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  overflow: visible;
}

.zen-section {
  padding: 80px 0;
  position: relative;
}

.zen-section--parchment {
  background-color: var(--rice-parchment);
}

.zen-section--ink {
  background-color: var(--carbon-pit);
  color: var(--cotton-linen);
}

.zen-section--ink h1,
.zen-section--ink h2,
.zen-section--ink h3,
.zen-section--ink h4,
.zen-section--ink h5,
.zen-section--ink h6,
.zen-section--ink p,
.zen-section--ink strong,
.zen-section--ink li {
  color: var(--cotton-linen);
}

.kinovar-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--kinovar-red);
  margin-bottom: 18px;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.kinovar-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1.5px;
  background-color: var(--kinovar-red);
  transform: translateY(-50%);
}

.kinovar-title {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1.1;
  color: var(--coal-deep);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 16px;
}

.kinovar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background-color: var(--kinovar-red);
}

.kinovar-title--center {
  text-align: center;
}

.kinovar-title--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.kinovar-title--light {
  color: var(--cotton-linen);
}

.section-lead {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--dry-graphite);
  margin-bottom: 36px;
  max-width: 720px;
}

.editorial-card {
  background-color: var(--cotton-linen);
  border: 1px solid var(--line-ink);
  padding: 28px;
  position: relative;
  box-shadow: var(--blade-shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: visible;
}

.editorial-card:hover {
  transform: translateY(-4px) rotate(1deg);
  border-color: var(--kinovar-red);
  border-width: 2px;
  box-shadow: var(--blade-shadow-hot);
  z-index: 100;
}

.editorial-card--bevel-tr {
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.editorial-card--bevel-bl {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.editorial-card--bevel-corners {
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.editorial-card--dark {
  background-color: var(--carbon-pit);
  color: var(--cotton-linen);
  border-color: var(--dry-graphite);
}

.editorial-card--dark h1,
.editorial-card--dark h2,
.editorial-card--dark h3,
.editorial-card--dark h4,
.editorial-card--dark h5,
.editorial-card--dark h6,
.editorial-card--dark p,
.editorial-card--dark strong,
.editorial-card--dark li {
  color: var(--cotton-linen);
}

.blade-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background-color: var(--kinovar-red);
  color: var(--cotton-linen);
  border: 2px solid var(--coal-deep);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 4px 4px 0px var(--coal-deep);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.blade-cta:hover {
  background-color: var(--kinovar-glow);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--coal-deep);
  color: var(--cotton-linen);
}

.blade-cta--ghost {
  background-color: transparent;
  color: var(--coal-deep);
  border-color: var(--coal-deep);
  box-shadow: none;
}

.blade-cta--ghost:hover {
  background-color: var(--coal-deep);
  color: var(--cotton-linen);
  box-shadow: 4px 4px 0px var(--kinovar-red);
}

.blade-cta--light {
  background-color: var(--cotton-linen);
  color: var(--coal-deep);
  border-color: var(--kinovar-red);
}

.blade-cta--light:hover {
  background-color: var(--kinovar-red);
  color: var(--cotton-linen);
}

.blade-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.sharp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--cotton-linen);
  border-bottom: 1px solid var(--line-ink);
  z-index: 900;
  display: flex;
  align-items: center;
  padding: 0 0 0 0;
}

.sharp-header__brand {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 28px;
  height: 100%;
  border-right: 1px solid var(--line-ink);
}

.sharp-header__mark {
  width: 44px;
  height: 46px;
  position: relative;
  flex-shrink: 0;
}

.sharp-header__mark-outer {
  stroke: var(--coal-deep);
  stroke-width: 2;
  fill: none;
}

.sharp-header__mark-inner {
  stroke: var(--kinovar-red);
  stroke-width: 1;
  stroke-dasharray: 3 2;
  fill: none;
}

.sharp-header__mark-blade {
  stroke: var(--kinovar-red);
  stroke-width: 1.5;
  fill: var(--coal-deep);
}

.sharp-header__brand-text {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  line-height: 1.05;
}

.sharp-header__domain {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--coal-deep);
  text-transform: lowercase;
}

.sharp-header__company {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 10px;
  color: var(--kinovar-red);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.sharp-header__nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  padding: 0 28px;
  gap: 0;
  position: relative;
}

.sharp-header__nav::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 0;
  bottom: 0;
  width: 16px;
  background: linear-gradient(105deg, var(--cotton-linen) 50%, transparent 50%);
}

.sharp-header__nav-list {
  display: flex;
  flex-direction: row;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sharp-header__nav-item {
  margin: 0;
}

.sharp-header__nav-link {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coal-deep);
  padding: 6px 12px;
  border: 1px solid var(--line-ink);
  background-color: var(--cotton-linen);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.sharp-header__nav-link:hover {
  color: var(--cotton-linen);
  background-color: var(--kinovar-red);
  border-color: var(--kinovar-red);
}

.sharp-header__nav-link.is-active {
  background-color: var(--kinovar-red);
  color: var(--cotton-linen);
  border-color: var(--kinovar-red);
}

.sharp-header__nav-link:nth-child(1) { transform: translateY(0); }
.sharp-header__nav-link:nth-child(2) { transform: translateY(4px); }
.sharp-header__nav-link:nth-child(3) { transform: translateY(8px); }
.sharp-header__nav-link:nth-child(4) { transform: translateY(12px); }
.sharp-header__nav-link:nth-child(5) { transform: translateY(16px); }

.sharp-burger {
  display: none;
  width: 48px;
  height: 48px;
  background-color: var(--cotton-linen);
  border: 1.5px solid var(--kinovar-red);
  position: relative;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.sharp-burger__lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sharp-burger__lines span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--kinovar-red);
}

.sharp-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bone-canvas);
  z-index: 950;
  padding: 100px 32px 32px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  overflow-y: auto;
}

.sharp-mobile-nav.is-open {
  transform: translateY(0);
}

.sharp-mobile-nav__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background-color: var(--kinovar-red);
  color: var(--cotton-linen);
  font-size: 22px;
  font-weight: 700;
  border: 2px solid var(--coal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.sharp-mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sharp-mobile-nav__link {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--coal-deep);
  text-decoration: none;
  display: inline-block;
  padding: 8px 0;
  border-bottom: 1px solid var(--kinovar-red);
}

.sharp-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  padding: 80px 0 100px;
  background-color: var(--bone-canvas);
  overflow: visible;
}

.sharp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.sharp-hero__stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 5;
}

.sharp-hero__card {
  background-color: var(--cotton-linen);
  border: 1px solid var(--line-ink);
  padding: 24px 28px;
  position: relative;
  box-shadow: var(--blade-shadow);
}

.sharp-hero__card--top {
  width: 78%;
  z-index: 1;
}

.sharp-hero__card--mid {
  width: 100%;
  z-index: 3;
  margin-top: -16px;
  padding: 36px 32px;
}

.sharp-hero__card--btm {
  width: 86%;
  z-index: 2;
  margin-top: -16px;
  padding: 28px;
}

.sharp-hero__micro-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--kinovar-red);
}

.sharp-hero__title {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.05;
  color: var(--coal-deep);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.sharp-hero__title em {
  font-style: italic;
  color: var(--kinovar-red);
  font-size: 1.14em;
}

.sharp-hero__subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--kinovar-red);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.sharp-hero__visual {
  position: relative;
  height: 580px;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.knife-3d-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sharp-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line-ink);
}

.sharp-hero__stat {
  text-align: left;
}

.sharp-hero__stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--coal-deep);
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.sharp-hero__stat-num::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--kinovar-red);
}

.sharp-hero__stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--dry-graphite);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  position: relative;
}

.bento-card {
  background-color: var(--cotton-linen);
  border: 1px solid var(--line-ink);
  padding: 28px;
  position: relative;
  box-shadow: var(--blade-shadow);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, z-index 0.3s;
  overflow: visible;
}

.bento-card:hover {
  transform: translateY(-4px) rotate(0.5deg);
  border-color: var(--kinovar-red);
  border-width: 2px;
  box-shadow: var(--blade-shadow-hot);
  z-index: 50;
}

.bento-card--large {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--kinovar-red);
}

.bento-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--coal-deep);
  margin-bottom: 8px;
  line-height: 1.2;
}

.bento-card__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--kinovar-red);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.bento-card__lead {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dry-graphite);
  margin-bottom: 16px;
}

.bento-card__link {
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--coal-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-bottom: 1px solid var(--coal-deep);
  padding-bottom: 4px;
}

.bento-card__link:hover {
  color: var(--kinovar-red);
  border-color: var(--kinovar-red);
}

.bento-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 18px;
  border: 1px solid var(--line-ink);
}

.bento-card__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.bento-card__chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: var(--bone-canvas);
  color: var(--coal-deep);
  padding: 4px 8px;
  border: 1px solid var(--line-ink);
}

.split-screen {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
  align-items: stretch;
  margin-top: 32px;
  position: relative;
  min-height: 640px;
}

.split-screen__sticky {
  position: sticky;
  top: 120px;
  height: 600px;
  background-color: var(--coal-deep);
  overflow: hidden;
  border: 1px solid var(--line-ink);
  display: flex;
  align-items: stretch;
}

.split-screen__sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.split-screen__scroll {
  padding: 0 0 0 48px;
  background-color: var(--bone-canvas);
  position: relative;
}

.split-screen__scroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--kinovar-red) 12%, var(--kinovar-red) 88%, transparent);
}

.split-screen__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 34px;
  color: var(--coal-deep);
  margin-bottom: 24px;
  line-height: 1.15;
}

.split-screen__text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--coal-deep);
  margin-bottom: 18px;
}

.split-screen__text::first-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--kinovar-red);
  float: left;
  line-height: 1;
  margin-right: 10px;
  margin-top: 4px;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-list__item {
  position: relative;
  padding: 14px 18px 14px 28px;
  background-color: var(--cotton-linen);
  border: 1px solid var(--line-ink);
  display: flex;
  align-items: center;
  gap: 16px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.timeline-list__year {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  color: var(--kinovar-red);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  min-width: 64px;
}

.timeline-list__text {
  font-size: 14px;
  color: var(--coal-deep);
  line-height: 1.5;
}

.stacking-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.stacking-card {
  background-color: var(--cotton-linen);
  border: 1px solid var(--line-ink);
  padding: 24px 28px;
  position: relative;
  box-shadow: var(--blade-shadow);
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, z-index 0.35s;
  margin-bottom: -16px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.stacking-card:nth-child(1) { z-index: 6; }
.stacking-card:nth-child(2) { z-index: 5; }
.stacking-card:nth-child(3) { z-index: 4; }
.stacking-card:nth-child(4) { z-index: 3; }
.stacking-card:nth-child(5) { z-index: 2; }
.stacking-card:nth-child(6) { z-index: 1; }

.stacking-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--kinovar-red);
  border-width: 2px;
  box-shadow: var(--blade-shadow-hot);
  z-index: 100;
}

.stacking-card__num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--kinovar-red);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.stacking-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--coal-deep);
  margin-bottom: 4px;
  line-height: 1.2;
}

.stacking-card__lead {
  font-size: 13px;
  color: var(--dry-graphite);
  line-height: 1.5;
}

.stacking-card__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  flex-basis: 100%;
  margin-top: 0;
  font-size: 14px;
  color: var(--coal-deep);
  line-height: 1.7;
}

.stacking-card.is-open {
  flex-wrap: wrap;
  z-index: 100;
}

.stacking-card.is-open .stacking-card__detail {
  max-height: 320px;
  margin-top: 12px;
}

.flex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.flex-grow-card {
  background-color: var(--cotton-linen);
  border: 1px solid var(--line-ink);
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: flex 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.flex-grow-card:hover {
  border-color: var(--kinovar-red);
  border-width: 2px;
  box-shadow: var(--blade-shadow-hot);
}

.flex-grow-card__icon {
  width: 36px;
  height: 36px;
  color: var(--kinovar-red);
  flex-shrink: 0;
}

.flex-grow-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--coal-deep);
  line-height: 1.2;
}

.flex-grow-card__lead {
  font-size: 13px;
  color: var(--dry-graphite);
  line-height: 1.5;
}

.flex-grow-card__detail {
  font-size: 13px;
  line-height: 1.7;
  color: var(--coal-deep);
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  overflow: hidden;
}

.flex-grow-card:hover .flex-grow-card__detail {
  max-height: 220px;
  opacity: 1;
}

.marquee-strip {
  background-color: var(--coal-deep);
  padding: 48px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--kinovar-red);
  border-bottom: 1px solid var(--kinovar-red);
}

.marquee-strip__inner {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-strip__item {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--cotton-linen);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 32px;
}

.marquee-strip__item span {
  color: var(--kinovar-red);
  font-size: 22px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background-color: var(--cotton-linen);
  border: 1px solid var(--line-ink);
  margin-bottom: -1px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.team-row:hover {
  background-color: var(--carbon-pit);
  border-color: var(--kinovar-red);
  z-index: 10;
}

.team-row:hover .team-row__name,
.team-row:hover .team-row__role {
  color: var(--cotton-linen);
}

.team-row__name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--coal-deep);
  line-height: 1.1;
}

.team-row__role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--dry-graphite);
  text-transform: uppercase;
  margin-top: 4px;
}

.team-row__photo {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border: 1px solid var(--kinovar-red);
  flex-shrink: 0;
  filter: grayscale(1) contrast(1.05);
  position: absolute;
  right: 130px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 5;
}

.team-row:hover .team-row__photo {
  opacity: 1;
  transform: translateX(0);
}

.team-row__arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--kinovar-red);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: var(--cotton-linen);
  border: 1px solid var(--line-ink);
  border-left: 2px solid var(--coal-deep);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: border-left-color 0.3s ease;
}

.faq-item.is-open {
  border-left: 3px solid var(--kinovar-red);
}

.faq-item__question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 64px 22px 28px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--coal-deep);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}

.faq-item__toggle {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 28px;
  height: 28px;
  background-color: var(--coal-deep);
  color: var(--cotton-linen);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.faq-item.is-open .faq-item__toggle {
  background-color: var(--kinovar-red);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--coal-deep);
}

.faq-item.is-open .faq-item__answer {
  max-height: 360px;
  padding: 0 28px 22px;
}

.testimonial-coverflow {
  position: relative;
  margin-top: 32px;
  padding: 32px 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  -webkit-overflow-scrolling: touch;
  padding: 0 24px 18px;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 360px;
  max-width: calc(100vw - 48px);
  background-color: var(--cotton-linen);
  border: 1px solid var(--line-ink);
  padding: 32px;
  scroll-snap-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--blade-shadow);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card.is-active {
  border-color: var(--kinovar-red);
  border-width: 2px;
  box-shadow: var(--blade-shadow-hot);
}

.testimonial-card__quote {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
  color: var(--coal-deep);
  line-height: 1.55;
  position: relative;
  padding-left: 22px;
}

.testimonial-card__quote::before {
  content: '「';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 32px;
  color: var(--kinovar-red);
  font-weight: 900;
  line-height: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-ink);
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1px solid var(--kinovar-red);
  filter: grayscale(1) contrast(1.05);
}

.testimonial-card__name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--coal-deep);
  line-height: 1.2;
}

.testimonial-card__role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--dry-graphite);
  text-transform: uppercase;
  margin-top: 4px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.testimonial-controls__btn {
  width: 44px;
  height: 44px;
  background-color: var(--kinovar-red);
  color: var(--cotton-linen);
  border: 1.5px solid var(--coal-deep);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease;
}

.testimonial-controls__btn:hover {
  background-color: var(--coal-deep);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 32px;
  min-height: 540px;
}

.contact-split__info {
  background-color: var(--carbon-pit);
  color: var(--cotton-linen);
  padding: 56px 48px;
  position: sticky;
  top: 120px;
  height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.contact-split__info h3,
.contact-split__info p,
.contact-split__info strong,
.contact-split__info li,
.contact-split__info a {
  color: var(--cotton-linen);
}

.contact-split__phone {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--cotton-linen);
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.contact-split__email {
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  color: var(--kinovar-red);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.contact-split__address {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cotton-linen);
  font-style: normal;
  border-top: 1px solid var(--dry-graphite);
  padding-top: 18px;
  margin-top: 12px;
}

.contact-split__form {
  background-color: var(--cotton-linen);
  padding: 56px 48px;
  border: 1px solid var(--line-ink);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coal-deep);
  font-weight: 600;
}

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line-ink);
  background-color: var(--cotton-linen);
  color: var(--coal-deep);
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  border-color: var(--kinovar-red);
  border-width: 1.5px;
  background-color: var(--rice-parchment);
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact-form__hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--dry-graphite);
  letter-spacing: 0.08em;
}

.contact-form__status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--kinovar-red);
  padding: 12px 14px;
  border: 1px solid var(--kinovar-red);
  background-color: var(--rice-parchment);
  display: none;
}

.contact-form__status.is-visible {
  display: block;
}

.sharp-footer {
  background-color: var(--carbon-pit);
  color: var(--cotton-linen);
  padding: 64px 0 0;
  position: relative;
  border-top: 2px solid var(--kinovar-red);
  margin-top: 80px;
}

.sharp-footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 28px;
  height: 28px;
  background-color: var(--carbon-pit);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  border-right: 2px solid var(--kinovar-red);
  border-bottom: 0;
}

.sharp-footer::after {
  content: '';
  position: absolute;
  top: -2px;
  right: 0;
  width: 28px;
  height: 28px;
  background-color: var(--carbon-pit);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-left: 2px solid var(--kinovar-red);
}

.sharp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}

.sharp-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sharp-footer__mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sharp-footer__mark-svg {
  width: 36px;
  height: 38px;
}

.sharp-footer__domain {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  color: var(--cotton-linen);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.sharp-footer__intro {
  font-size: 13px;
  line-height: 1.7;
  color: var(--dry-graphite);
  max-width: 320px;
}

.sharp-footer__heading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kinovar-red);
  margin-bottom: 18px;
  font-weight: 700;
}

.sharp-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sharp-footer__list a {
  color: var(--cotton-linen);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.sharp-footer__list a:hover {
  color: var(--kinovar-red);
}

.sharp-footer__address {
  font-size: 13px;
  line-height: 1.7;
  color: var(--cotton-linen);
  font-style: normal;
}

.sharp-footer__phone,
.sharp-footer__email {
  display: block;
  font-size: 13px;
  color: var(--cotton-linen);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.25s ease;
}

.sharp-footer__phone:hover,
.sharp-footer__email:hover {
  color: var(--kinovar-red);
}

.sharp-footer__bottom {
  border-top: 1px solid var(--dry-graphite);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.sharp-footer__copy {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--dry-graphite);
  letter-spacing: 0.04em;
}

.sharp-footer__legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sharp-footer__legal a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cotton-linen);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.sharp-footer__legal a:hover {
  color: var(--kinovar-red);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  background-color: var(--cotton-linen);
  border: 1px solid var(--coal-deep);
  padding: 22px 24px;
  z-index: 999;
  box-shadow: 6px 8px 0px rgba(28, 20, 18, 0.12);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.cookie-banner__title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--coal-deep);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner__title::before {
  content: '◇';
  color: var(--kinovar-red);
  font-size: 16px;
}

.cookie-banner__desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--coal-deep);
  margin-bottom: 16px;
}

.cookie-banner__desc a {
  color: var(--kinovar-red);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  flex: 1;
  min-width: 100px;
  padding: 10px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1.5px solid var(--coal-deep);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.cookie-banner__btn--accept {
  background-color: var(--kinovar-red);
  color: var(--cotton-linen);
  border-color: var(--kinovar-red);
}

.cookie-banner__btn--accept:hover {
  background-color: var(--coal-deep);
  color: var(--cotton-linen);
}

.cookie-banner__btn--decline {
  background-color: var(--cotton-linen);
  color: var(--coal-deep);
}

.cookie-banner__btn--decline:hover {
  background-color: var(--coal-deep);
  color: var(--cotton-linen);
}

.cookie-banner.is-hidden {
  display: none;
}

.knife-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

.knife-canvas__static {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
}

.knife-canvas__static--top {
  top: 80px;
  right: 4%;
  width: 220px;
  height: 220px;
  transform: rotate(15deg);
}

.knife-canvas__static--bottom {
  bottom: 60px;
  left: 4%;
  width: 180px;
  height: 180px;
  transform: rotate(-22deg);
}

.section-divider {
  position: relative;
  height: 1px;
  background-color: var(--line-ink);
  margin: 64px 0;
}

.section-divider--kinovar {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--kinovar-red) 0, var(--kinovar-red) 12px, transparent 12px, transparent 20px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.gallery-grid__item {
  position: relative;
  overflow: hidden;
  background-color: var(--cotton-linen);
  border: 1px solid var(--line-ink);
  aspect-ratio: 1 / 1;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: grayscale(0.4) contrast(1.05);
}

.gallery-grid__item:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.05);
}

.gallery-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--carbon-pit);
  color: var(--cotton-linen);
  padding: 10px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-grid__item:hover .gallery-grid__caption {
  transform: translateY(0);
}

.gallery-grid__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.thank-you-state {
  text-align: center;
  padding: 100px 24px;
  max-width: 640px;
  margin: 0 auto;
}

.thank-you-state__mark {
  font-size: 80px;
  color: var(--kinovar-red);
  margin-bottom: 24px;
  line-height: 1;
}

.thank-you-state__title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--coal-deep);
  margin-bottom: 18px;
  line-height: 1.1;
}

.thank-you-state__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--coal-deep);
  margin-bottom: 32px;
}

.thank-you-state__cta {
  margin-top: 32px;
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 84px 32px;
}

.legal-page h1 {
  font-size: 44px;
  margin-bottom: 12px;
  color: var(--coal-deep);
}

.legal-page__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--dry-graphite);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}

.legal-page h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-ink);
}

.legal-page p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: var(--coal-deep);
}

.legal-page ul {
  margin-left: 24px;
  margin-bottom: 18px;
}

.legal-page li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--coal-deep);
}

.section-anim {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.section-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .sharp-header__nav-list {
    display: none;
  }
  .sharp-burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sharp-header__nav {
    justify-content: flex-end;
    padding: 0 18px;
  }
  .sharp-header__nav::before {
    display: none;
  }
  .sharp-hero__title {
    font-size: 44px;
  }
  .sharp-hero__grid {
    gap: 18px;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-screen {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-screen__sticky {
    position: relative;
    top: 0;
    height: 360px;
  }
  .split-screen__scroll {
    padding: 32px 0 0;
  }
  .split-screen__scroll::before {
    display: none;
  }
  .flex-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid__item--large {
    grid-column: span 2;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-split__info {
    position: relative;
    top: 0;
    height: auto;
    padding: 40px 28px;
  }
  .sharp-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}

@media (max-width: 767px) {
  .sharp-header {
    height: 56px;
    border-bottom: 1.5px solid var(--kinovar-red);
  }
  .sharp-header__brand {
    padding: 0 14px;
  }
  .sharp-header__mark {
    width: 30px;
    height: 32px;
  }
  .sharp-header__domain {
    font-size: 14px;
  }
  .sharp-header__company {
    display: none;
  }
  .sharp-mobile-nav {
    display: block;
  }
  .sharp-hero {
    margin-top: 56px;
    padding: 48px 0 64px;
    min-height: auto;
  }
  .sharp-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sharp-hero__title {
    font-size: 38px;
  }
  .sharp-hero__visual {
    height: 360px;
    order: -1;
  }
  .sharp-hero__card--top {
    width: 100%;
  }
  .sharp-hero__card--btm {
    width: 100%;
  }
  .sharp-hero__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .zen-container {
    padding: 0 18px;
  }
  .zen-section {
    padding: 56px 0;
  }
  .kinovar-title {
    font-size: 28px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .flex-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid__item--large {
    grid-column: span 1;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-split__form {
    padding: 32px 22px;
  }
  .contact-split__info {
    padding: 32px 22px;
  }
  .contact-split__phone {
    font-size: 28px;
  }
  .sharp-footer__grid {
    grid-template-columns: 1fr;
  }
  .sharp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .team-row__photo {
    display: none;
  }
  .team-row__name {
    font-size: 20px;
  }
  .marquee-strip__item {
    font-size: 26px;
  }
  .stacking-card__num {
    min-width: 44px;
    font-size: 26px;
  }
  .legal-page h1 {
    font-size: 32px;
  }
  .thank-you-state__title {
    font-size: 36px;
  }
  .legal-page {
    padding: 40px 18px;
  }
}
