:root {
  --font-brand: "Cormorant Garamond", Georgia, serif;
  --font-display: "Shippori Mincho", "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", sans-serif;
  --font-numeral: "Inter", "Noto Sans JP", sans-serif;
  --ink: #1a1714;
  --muted: #70675d;
  --line: #ddd4c7;
  --paper: #f7f2ea;
  --paper-2: #ede4d7;
  --stone: #2a2825;
  --stone-2: #141311;
  --white: #fffaf2;
  --accent: #8f6b45;
  --accent-dark: #5c432a;
  --shadow: 0 22px 60px rgba(31, 26, 20, 0.12);
  --radius: 6px;
  --container: min(1180px, calc(100% - 40px));
}

/* Reference alignment: LURAVOA editorial interior site */
.home {
  background: #fbfaf7;
}

.home .site-header {
  background: rgba(255, 255, 252, 0.96);
  border-bottom: 1px solid #e8e2d8;
  backdrop-filter: blur(12px);
}

.home .site-header__inner {
  min-height: 86px;
  margin: 0 auto;
  margin-inline: auto;
}

.home .site-logo .brand-mark {
  font-size: clamp(26px, 2.3vw, 36px);
  letter-spacing: 0.12em;
}

.home .placeholder-badge {
  display: none;
}

.home .site-nav {
  gap: clamp(28px, 3vw, 56px);
  text-transform: uppercase;
  font-family: var(--font-numeral);
  font-size: 12px;
}

.home .header-cta {
  min-width: 128px;
  border-radius: 0;
  background: #121110;
  color: var(--white);
  text-transform: uppercase;
}

.home .hero {
  min-height: min(680px, calc(100vh - 86px));
}

.home .hero__media::after {
  background: linear-gradient(90deg, rgba(15, 14, 13, 0.58), rgba(15, 14, 13, 0.12) 58%, rgba(15, 14, 13, 0.34));
}

.home .hero__content {
  width: var(--container);
  margin: 0 auto;
  margin-inline: auto;
  padding: clamp(120px, 15vw, 210px) 0 clamp(72px, 8vw, 120px);
}

.home .hero h1 {
  max-width: 720px;
  font-family: var(--font-brand);
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 300;
  line-height: 1.06;
}

.home .hero__lead {
  max-width: 520px;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.9;
}

.home .section {
  padding: clamp(54px, 6vw, 88px) 0;
}

.home .concept-line {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 8vw, 140px);
  max-width: none;
  text-align: left;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.55;
}

.home .concept-line::after {
  content: "住まいや店舗などの空間を、価値観と使い方に合わせて整えます。素材の質感、光の入り方、余白の残し方まで確認します。";
  display: block;
  max-width: 560px;
  align-self: center;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 2;
}

.home #works .section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.home #works .section__head h2,
.home #works .section__lead {
  display: none;
}

.home #works .section__label {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-numeral);
  font-size: 13px;
  text-transform: uppercase;
}

.home #works .section__head::after {
  content: "VIEW ALL WORKS";
  color: var(--ink);
  font-family: var(--font-numeral);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.home #works .works-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 30px);
}

.home #works .work-card {
  background: transparent;
}

.home #works .work-card:nth-child(n+5) {
  display: none;
}

.home #works .work-card__body {
  padding: 16px 0 0;
}

.home #works .work-card h3 {
  font-size: 14px;
  text-transform: uppercase;
}

.home #works .work-card p {
  font-size: 12px;
}

.home #process .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 242, 0.34);
}

.home #process .process-card {
  border: 0;
  background: transparent;
}

.home #process .process-card figure {
  display: none;
}

.home #process .process-card:nth-child(n+5) {
  display: none;
}

.home .split {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}

.home .cta-band {
  background: #121110;
}

@media (max-width: 768px) {
  .home .concept-line,
  .home .split {
    grid-template-columns: 1fr;
  }

  .home #works .works-grid,
  .home #process .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.85;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  overflow-x: clip;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.brand-mark {
  font-family: var(--font-brand);
  font-weight: 300;
  letter-spacing: 0.09em;
  line-height: 1;
  white-space: nowrap;
}

.brand-sub {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.placeholder-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px;
  border: 1px solid rgba(143, 107, 69, 0.35);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 11px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.35;
  font-feature-settings: "palt" 1;
  word-break: auto-phrase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

p {
  margin: 0;
  word-break: auto-phrase;
  text-wrap: pretty;
}

.numeral,
.tel,
.hours {
  font-family: var(--font-numeral);
  font-feature-settings: "tnum" 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 242, 234, 0.92);
  border-bottom: 1px solid rgba(221, 212, 199, 0.8);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  word-break: keep-all;
  flex-shrink: 0;
}

.brand-mark, .site-logo { white-space: nowrap; word-break: keep-all; }

.site-logo .brand-mark {
  font-size: clamp(22px, 2.5vw, 30px);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  background: var(--stone);
  color: var(--white);
  overflow: hidden;
}

.hero--sub {
  min-height: 520px;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 19, 17, 0.74), rgba(20, 19, 17, 0.2) 48%, rgba(20, 19, 17, 0.64));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0 72px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-numeral);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.74);
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(42px, 7vw, 96px);
  letter-spacing: 0;
}

.hero--sub h1 {
  font-size: clamp(38px, 5.8vw, 72px);
}

.hero__lead {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(15px, 1.45vw, 18px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.35;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: inherit;
}

.section {
  width: 100%;
  max-width: 100%;
  padding: clamp(48px, 5.5vw, 88px) 0;
}

.section--dark {
  background: var(--stone-2);
  color: var(--white);
}

.section--muted {
  background: var(--paper-2);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) 1fr;
  gap: clamp(24px, 5vw, 76px);
  align-items: start;
  margin-bottom: clamp(28px, 3vw, 40px);
}

.section__label {
  font-family: var(--font-numeral);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.section--dark .section__label,
.section--dark .section__lead {
  color: rgba(255, 250, 242, 0.72);
}

.section__head h2 {
  font-size: clamp(26px, 2.5vw, 36px);
}

.section__lead {
  max-width: 700px;
  margin-top: 18px;
  color: var(--muted);
}

.concept-line {
  max-width: 940px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 66px);
  line-height: 1.55;
  text-align: center;
  word-break: auto-phrase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

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

.works-grid > *,
.process-grid > * {
  min-width: 0;
}

.work-card {
  display: block;
  background: rgba(255, 250, 242, 0.72);
}

.work-card figure,
.image-figure {
  position: relative;
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d8cec0;
}

.split .image-figure,
.split--reverse .image-figure {
  aspect-ratio: 5 / 4;
  max-width: 480px;
}

.work-card img,
.image-figure img {
  width: 100%;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  object-fit: cover;
}

.work-card img {
  transition: transform 0.45s ease;
}

.work-card:hover img {
  transform: scale(1.035);
}

figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(20, 19, 17, 0.66);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.work-card__body {
  padding: 18px 4px 6px;
}

.work-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-numeral);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.work-card h3 {
  font-size: clamp(20px, 2.1vw, 26px);
}

.work-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.process-card {
  background: rgba(255, 250, 242, 0.06);
  border: 1px solid rgba(255, 250, 242, 0.16);
}

.process-card img {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process-card__body {
  padding: 18px;
}

.process-card__num {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-numeral);
  color: rgba(255, 250, 242, 0.58);
}

.process-card h3 {
  font-size: 20px;
}

.process-card p {
  margin-top: 8px;
  color: rgba(255, 250, 242, 0.74);
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split h2 {
  font-size: clamp(26px, 2.5vw, 36px);
}

.split p {
  margin-top: 18px;
  color: var(--muted);
}

.section--dark .split p {
  color: rgba(255, 250, 242, 0.72);
}

.profile-list,
.info-list {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.profile-list div,
.info-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 10px 14px;
  background: var(--paper);
  font-size: 14px;
  line-height: 1.6;
}

.section--dark .profile-list,
.section--dark .info-list {
  background: rgba(255, 250, 242, 0.16);
}

.section--dark .profile-list div,
.section--dark .info-list div {
  background: var(--stone-2);
}

dt {
  color: var(--muted);
  font-size: 13px;
}

dd {
  margin: 0;
}

.cta-band {
  width: 100%;
  max-width: 100%;
  padding: clamp(56px, 8vw, 94px) 0;
  background: var(--ink);
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.cta-band h2 {
  font-size: clamp(24px, 2.2vw, 32px);
}

.cta-band p {
  max-width: 540px;
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.72);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tab {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.tab[aria-current="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

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

.award-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.58);
}

.award-card span {
  display: block;
  color: var(--accent-dark);
  font-family: var(--font-numeral);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.award-card h3 {
  margin-top: 20px;
  font-size: 22px;
}

.award-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  min-height: 48px;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

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

.map-frame {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.12) contrast(0.94);
}

.site-footer {
  width: 100%;
  max-width: 100%;
  padding: 52px 0 40px;
  background: #11100f;
  color: rgba(255, 250, 242, 0.8);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
}

.site-footer .brand-mark {
  color: var(--white);
  font-size: 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: flex-end;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.demo-notice {
  grid-column: 1 / -1;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 242, 0.16);
  color: rgba(255, 250, 242, 0.68);
  font-size: 13px;
}

.demo-notice p + p {
  margin-top: 8px;
}

@media (max-width: 1040px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 14px;
  }

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

@media (max-width: 768px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .site-header__inner {
    min-height: 70px;
    gap: 14px;
  }

  .site-logo {
    min-width: 0;
  }

  .site-logo .brand-mark {
    font-size: 22px;
  }

  .placeholder-badge {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero,
  .hero--sub {
    min-height: 560px;
  }

  .hero__content {
    padding: 88px 0 46px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .section__head,
  .split,
  .split--reverse,
  .contact-layout,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-band__inner {
    display: block;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header__inner {
    width: calc(100% - 22px);
  }

  .site-nav {
    gap: 18px;
    font-size: 12px;
  }

  .header-cta {
    max-width: 118px;
    text-align: center;
  }

  .btn-row,
  .btn {
    width: 100%;
  }

  .works-grid,
  .process-grid,
  .award-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

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

  .concept-line {
    text-align: left;
  }

  figcaption {
    right: 8px;
    bottom: 8px;
    font-size: 9px;
  }
}

/* Reference alignment overrides must stay last. */
.home {
  background: #fbfaf7;
}

.home .site-header {
  background: rgba(255, 255, 252, 0.96);
  border-bottom: 1px solid #e8e2d8;
  backdrop-filter: blur(12px);
}

.home .site-header__inner {
  min-height: 86px;
}

.home .site-logo .brand-mark {
  font-size: clamp(26px, 2.3vw, 36px);
  letter-spacing: 0.12em;
}

.home .placeholder-badge {
  display: none;
}

.home .site-nav {
  gap: clamp(28px, 3vw, 56px);
  text-transform: uppercase;
  font-family: var(--font-numeral);
  font-size: 12px;
}

.home .header-cta {
  min-width: 128px;
  border-radius: 0;
  background: #121110;
  color: var(--white);
  text-transform: uppercase;
}

.home .hero {
  min-height: min(680px, calc(100vh - 86px));
}

.home .hero__media::after {
  background: linear-gradient(90deg, rgba(15, 14, 13, 0.58), rgba(15, 14, 13, 0.12) 58%, rgba(15, 14, 13, 0.34));
}

.home .hero__content {
  padding: clamp(120px, 15vw, 210px) 0 clamp(72px, 8vw, 120px);
}

.home .hero h1 {
  max-width: 720px;
  font-family: var(--font-brand);
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 300;
  line-height: 1.06;
}

.home .hero__lead {
  max-width: 520px;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.9;
}

.home .section {
  padding: clamp(54px, 6vw, 88px) 0;
}

.home .concept-line {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 8vw, 140px);
  max-width: none;
  text-align: left;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.55;
}

.home .concept-line::after {
  content: "住まいや店舗などの空間を、価値観と使い方に合わせて整えます。素材の質感、光の入り方、余白の残し方まで確認します。";
  display: block;
  max-width: 560px;
  align-self: center;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 2;
}

.home #works .section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.home #works .section__head h2,
.home #works .section__lead {
  display: none;
}

.home #works .section__label {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-numeral);
  font-size: 13px;
  text-transform: uppercase;
}

.home #works .section__head::after {
  content: "VIEW ALL WORKS";
  color: var(--ink);
  font-family: var(--font-numeral);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.home #works .works-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 30px);
}

.home #works .work-card {
  background: transparent;
}

.home #works .work-card:nth-child(n+5) {
  display: none;
}

.home #works .work-card__body {
  padding: 16px 0 0;
}

.home #works .work-card h3 {
  font-size: 14px;
  text-transform: uppercase;
}

.home #works .work-card p {
  font-size: 12px;
}

.home #process .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 242, 0.34);
}

.home #process .process-card {
  border: 0;
  background: transparent;
}

.home #process .process-card figure {
  display: none;
}

.home #process .process-card:nth-child(n+5) {
  display: none;
}

.home .split {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}

.home .cta-band {
  background: #121110;
}

@media (max-width: 768px) {
  .home .concept-line,
  .home .split {
    grid-template-columns: 1fr;
  }

  .home #works .works-grid,
  .home #process .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
