:root {
  --paper: #fffdf9;
  --paper-soft: #fbf8f1;
  --cream: #f3eee5;
  --cream-deep: #e8dfd2;
  --ink: #322522;
  --text: #4c403b;
  --muted: #827870;
  --olive: #8b9162;
  --olive-dark: #6f7649;
  --olive-pale: #e8e7d7;
  --sand: #d9c7ac;
  --line: #e7ddd1;
  --shadow: 0 18px 42px rgba(68, 56, 44, 0.13);
  --shadow-soft: 0 10px 26px rgba(68, 56, 44, 0.09);
  --radius: 24px;
  --radius-card: 18px;
  --max: 1220px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.8), transparent 28rem),
    linear-gradient(130deg, #eeeae3, #e7e2da);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.9;
  letter-spacing: 0;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

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

.page-shell {
  width: min(1500px, calc(100% - 40px));
  margin: 22px auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(226, 217, 204, 0.75);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 20px clamp(28px, 5vw, 64px);
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(136px, 14vw, 184px);
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.global-nav a {
  position: relative;
  padding: 10px 0;
}

.global-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 999px;
  background: transparent;
  transform: translateX(-50%);
}

.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  background: var(--olive);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(40deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-40deg);
}

.mobile-nav {
  position: fixed;
  inset: 86px 20px auto 20px;
  z-index: 25;
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 253, 249, 0.97);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--paper-soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.mobile-nav a::after {
  content: "→";
  color: var(--olive);
}

.mobile-only,
.narrow-title {
  display: none;
}

main {
  background:
    radial-gradient(circle at 96% 6%, rgba(209, 188, 153, 0.18), transparent 18rem),
    radial-gradient(circle at 2% 42%, rgba(139, 145, 98, 0.09), transparent 16rem),
    var(--paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 4.8vw, 72px);
  min-height: 620px;
  padding: clamp(42px, 5vw, 72px) clamp(28px, 6vw, 88px) clamp(44px, 5vw, 68px);
}

.hero-mobile-actions {
  display: none;
}

.page-hero {
  min-height: 580px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.section-kicker span {
  width: 10px;
  height: 16px;
  border-radius: 80% 0 80% 20%;
  background: linear-gradient(145deg, var(--olive), #d0bf96);
  transform: rotate(38deg);
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

.keep-word {
  white-space: nowrap;
}

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(36px, 3.15vw, 56px);
  line-height: 1.5;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 2.35vw, 40px);
  line-height: 1.6;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-copy p {
  margin: 0 0 13px;
  max-width: 590px;
  font-size: 15px;
  font-weight: 600;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.button-row.hero-mobile-actions {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: min(100%, 220px);
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--olive-dark);
}

.button-primary {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 12px 28px rgba(111, 118, 73, 0.22);
}

.button-secondary {
  border-color: #bca88f;
  background: rgba(255, 253, 249, 0.78);
  color: var(--ink);
}

.button-light {
  min-width: 270px;
  background: #fff;
  color: var(--ink);
}

.button-light span {
  background: #f6f2eb;
}

.hero-art {
  position: relative;
  min-width: 0;
}

.blob-image,
.organic-photo img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 0;
  filter: drop-shadow(0 22px 34px rgba(86, 72, 58, 0.12));
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 640' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M74 309C63 204 135 104 279 66c121-32 201 4 306 8 117 5 217-42 323 29 96 65 116 195 73 311-52 142-176 197-331 205-135 7-196-42-314-26-141 18-245-35-292-132-23-48-18-103 30-152Z'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 640' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M74 309C63 204 135 104 279 66c121-32 201 4 306 8 117 5 217-42 323 29 96 65 116 195 73 311-52 142-176 197-331 205-135 7-196-42-314-26-141 18-245-35-292-132-23-48-18-103 30-152Z'/%3E%3C/svg%3E");
  mask-position: center;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.hero-home .blob-image,
.works-hero .blob-image {
  aspect-ratio: 1.58 / 1;
  object-position: center 54%;
}

@media (min-width: 901px) {
  .hero.hero-home {
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
    min-height: 560px;
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .hero.hero-home .hero-art {
    transform: translateY(-2px) scale(0.98);
    transform-origin: center;
  }
}

.shape {
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
}

.shape-olive {
  top: 4%;
  left: 8%;
  width: 56px;
  height: 32px;
  border-radius: 90% 28% 80% 32%;
  background: var(--olive);
  opacity: 0.86;
  transform: rotate(-42deg);
}

.shape-cream {
  top: -5%;
  right: 12%;
  width: 72px;
  height: 34px;
  border-radius: 58% 42% 48% 52%;
  background: #eadbbe;
  opacity: 0.72;
  transform: rotate(-20deg);
}

.hero-art::after,
.photo-right::after {
  position: absolute;
  right: -18px;
  bottom: 8%;
  width: 88px;
  height: 62px;
  content: "";
  border: 2px solid #d7b98d;
  border-radius: 54% 46% 60% 40%;
  opacity: 0.65;
  transform: rotate(-28deg);
}

.scroll-note {
  display: none;
}

.section,
.split-section,
.strength-section,
.featured-case,
.message-section,
.contact-layout,
.sub-hero {
  padding: clamp(56px, 7vw, 98px) clamp(28px, 6vw, 88px);
}

.section-soft,
.split-section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(247, 244, 237, 0.72), rgba(255, 253, 249, 0.88));
}

.section-heading {
  margin-bottom: 38px;
}

.centered {
  text-align: center;
}

.centered .section-kicker {
  justify-content: center;
}

.heading-lead {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.compact-heading {
  align-items: center;
  margin-bottom: 20px;
}

.compact-heading h2,
.side-card h2 {
  font-size: 23px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  color: var(--olive);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(38px, 7vw, 86px);
}

.section-copy p {
  margin: 20px 0 0;
  max-width: 620px;
  font-weight: 600;
}

.organic-photo {
  position: relative;
  min-width: 0;
}

.service-grid,
.works-grid,
.value-grid,
.strength-grid,
.price-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.feature-card,
.work-card,
.value-grid article,
.price-grid article,
.faq-grid details,
.flow-cards article,
.process-row article,
.side-card,
.news-detail {
  position: relative;
  min-width: 0;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 34px 30px 28px;
}

.card-number {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.05em;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 8px auto 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0;
  line-height: 1;
}

.icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-circle.small {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  font-size: 0;
}

.feature-card h3,
.feature-card p {
  text-align: center;
}

.feature-card p,
.value-grid p,
.price-grid p,
.process-row p,
.flow-cards p {
  margin: 13px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.feature-card > a {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.feature-card .support-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  background: rgba(232, 231, 215, 0.62);
  border-left: 3px solid var(--olive);
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
  text-align: left;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

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

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--olive-dark);
  content: "✓";
}

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

.process-row article {
  padding: 24px 18px;
  text-align: center;
}

.process-row article:not(:last-child)::after {
  position: absolute;
  top: 48%;
  right: -14px;
  z-index: 2;
  color: #b6a48b;
  content: "›";
  font-size: 28px;
}

.price-grid article {
  padding: 32px 28px 26px;
  text-align: center;
}

.price-grid .recommended {
  border-color: rgba(139, 145, 98, 0.55);
  box-shadow: 0 18px 34px rgba(111, 118, 73, 0.13);
}

.plan-ribbon {
  margin: -32px -28px 22px;
  padding: 9px 12px;
  background: var(--olive);
  border-radius: 17px 17px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.price {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
}

.term {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.note {
  margin: 28px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

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

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

.work-card {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(86, 72, 58, 0.14);
}

.work-card img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
}

.work-card > div:not(.new-label) {
  padding: 20px 22px 22px;
}

.work-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.work-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.new-label {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 16px 0 14px 0;
  background: var(--olive);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.filter-bar button {
  min-width: 112px;
  min-height: 38px;
  padding: 7px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.filter-bar button.is-active {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

.work-card.is-hidden {
  display: none;
}

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

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

.strength-grid article,
.value-grid article {
  padding: 28px 20px;
  text-align: center;
}

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

.flow-cards {
  display: grid;
  gap: 26px;
}

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

.flow-cards article {
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: 28px 28px 26px;
}

.flow-cards span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--olive);
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
}

.flow-cards img {
  align-self: end;
  justify-self: center;
  width: min(72%, 210px);
  max-height: 136px;
  margin: 18px auto 0;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  opacity: 0.96;
}

.message-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background: var(--paper);
}

.message-section p {
  font-weight: 600;
}

.message-section img {
  width: min(100%, 440px);
  justify-self: center;
  border-radius: 0;
  filter: drop-shadow(0 14px 20px rgba(86, 72, 58, 0.08));
}

.news-list,
.news-archive {
  display: grid;
  gap: 14px;
}

.news-item {
  display: grid;
  grid-template-columns: 130px 90px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.news-item span,
.news-detail span {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  min-width: 76px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--olive-pale);
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 900;
}

.news-item time,
.news-detail time {
  color: var(--muted);
  font-weight: 800;
}

.news-detail {
  padding: 30px;
}

.news-detail h2 {
  margin-top: 18px;
}

.sub-hero {
  background: linear-gradient(180deg, rgba(255, 253, 249, 1), rgba(247, 244, 237, 0.7));
}

.sub-hero h1 {
  margin-bottom: 16px;
}

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

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

.faq-grid details {
  overflow: hidden;
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 15px 22px;
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  color: var(--olive-dark);
  font-size: 22px;
  line-height: 1;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid details p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(230px, 340px);
  align-items: center;
  gap: 20px;
  margin: clamp(36px, 6vw, 76px) clamp(28px, 6vw, 88px) clamp(32px, 5vw, 58px);
  min-height: 190px;
  padding: 30px clamp(24px, 4vw, 44px);
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(100deg, var(--olive-dark), #939a6c);
  color: #fff;
}

.cta-band h2,
.cta-band p {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cta-band > div {
  position: relative;
  z-index: 2;
}

.cta-band p {
  margin: 0 0 8px;
  font-weight: 700;
}

.cta-band h2 {
  margin: 0 0 18px;
  font-size: clamp(20px, 2vw, 30px);
}

.cta-badge {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: #f8f5ee;
  color: var(--olive-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.65;
  text-align: center;
}

.cta-band img {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(100%, 300px);
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  filter: drop-shadow(0 10px 16px rgba(54, 49, 34, 0.14));
  transform: none;
}

.featured-case {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 244, 237, 0.72));
}

.case-copy > p,
.case-copy h3 {
  margin: 12px 0;
}

.case-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.case-points article {
  padding-right: 16px;
  border-right: 1px dashed #d2c2ac;
  text-align: center;
}

.case-points article:last-child {
  border-right: 0;
}

.case-points h4 {
  margin: 0 0 8px;
  color: var(--ink);
}

.case-points p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.case-visual > img {
  width: 100%;
  aspect-ratio: 1.43 / 1;
  object-fit: cover;
  border-radius: 52% 48% 50% 50% / 42% 54% 46% 58%;
  box-shadow: var(--shadow);
}

.case-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.case-thumbs img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 4vw, 56px);
}

.contact-main,
.contact-side {
  min-width: 0;
}

.contact-main > p {
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form b {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 8px;
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--olive);
  color: #fff;
  font-size: 11px;
  font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 172px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(139, 145, 98, 0.14);
}

.contact-form small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.privacy-check {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-submit {
  width: 100%;
}

.form-message {
  min-height: 28px;
  margin: 0;
  color: var(--olive-dark);
  font-weight: 800;
}

.contact-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.side-card {
  padding: 24px;
}

.side-faq {
  display: grid;
  gap: 10px;
}

.side-faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-radius 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.side-faq details[open] {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(91, 76, 56, 0.08);
}

.side-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 10px 15px 10px 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

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

.side-faq summary::after {
  content: "›";
  flex: 0 0 auto;
  color: var(--olive-dark);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.side-faq details[open] summary::after {
  transform: rotate(90deg);
}

.side-faq p {
  margin: 0;
  padding: 0 18px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.9;
}

.side-faq button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 18px 16px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--olive-dark);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.side-faq button:hover {
  background: var(--olive-pale);
}

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

.timeline li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
}

.timeline li span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--olive-pale);
  color: var(--olive-dark);
  font-family: var(--serif);
  font-weight: 700;
}

.timeline strong {
  color: var(--ink);
}

.timeline small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.reply-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.reply-card .icon-circle {
  margin: 0;
}

.reply-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

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

.arrow-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.arrow-list li::after {
  content: "›";
  color: var(--olive);
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(320px, 1fr);
  gap: 24px;
}

.access-info {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper-soft);
}

.access-info dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.access-info div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

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

.access-info dt {
  color: var(--olive-dark);
  font-weight: 900;
}

.access-info dd {
  margin: 0;
  font-weight: 700;
}

.access-grid iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) auto minmax(190px, 0.9fr) auto;
  gap: clamp(20px, 4vw, 66px);
  align-items: end;
  padding: 34px clamp(28px, 6vw, 88px) 32px;
  background: rgba(255, 253, 249, 0.92);
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer-brand p,
.footer-meta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-footer nav,
.footer-meta {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #c9b9a4;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .wide-only {
    display: none;
  }

  .narrow-title {
    display: inline;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
    min-height: 590px;
  }

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

  .process-row article:not(:last-child)::after {
    display: none;
  }

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

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

  .cta-band {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 270px);
  }

  .cta-badge {
    position: absolute;
    right: 246px;
    bottom: 24px;
    width: 96px;
    height: 96px;
    font-size: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  body {
    background: #ebe6df;
  }

  .page-shell {
    width: calc(100vw - 24px);
    max-width: 430px;
    margin: 14px auto;
    overflow: visible;
    border-radius: 22px;
  }

  .site-header {
    min-height: 74px;
    padding: 18px 22px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline;
  }

  .global-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .page-hero,
  .split-section,
  .message-section,
  .featured-case,
  .contact-layout,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 34px 22px 42px;
    gap: 28px;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.62;
  }

  h2 {
    font-size: 23px;
  }

  h3 {
    font-size: 18px;
  }

  .hero-copy p {
    font-size: 13px;
    line-height: 1.95;
  }

  .button-row {
    display: grid;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-home .hero-copy .button-row {
    display: none;
  }

  .hero-home .hero-art {
    order: 2;
  }

  .hero-home .hero-mobile-actions {
    display: grid;
    order: 3;
    gap: 12px;
    margin-top: -8px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .blob-image,
  .hero-home .blob-image,
  .works-hero .blob-image {
    aspect-ratio: 1.42 / 1;
    border-radius: 42% 58% 45% 55% / 42% 48% 52% 58%;
  }

  .shape-olive {
    top: -6px;
    left: 14%;
    width: 48px;
    height: 28px;
  }

  .shape-cream,
  .scroll-note {
    display: none;
  }

  .section,
  .split-section,
  .strength-section,
  .featured-case,
  .message-section,
  .contact-layout,
  .sub-hero {
    padding: 42px 22px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .between {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .service-grid,
  .works-grid,
  .works-grid.compact,
  .value-grid,
  .strength-grid,
  .price-grid,
  .faq-grid,
  .faq-grid:not(.two),
  .process-row,
  .flow-cards.three,
  .case-points {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .works-grid,
  .price-grid {
    gap: 14px;
  }

  .feature-card {
    padding: 24px 20px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 2px 14px;
    align-items: start;
  }

  .feature-card .card-number {
    grid-column: 1;
    grid-row: 1;
    font-size: 20px;
  }

  .feature-card .icon-circle {
    grid-column: 1;
    grid-row: 2 / span 2;
    width: 50px;
    height: 50px;
    margin: 0;
    font-size: 23px;
  }

  .feature-card h3,
  .feature-card p,
  .feature-card > a {
    grid-column: 2;
    text-align: left;
    justify-content: flex-start;
  }

  .feature-card .check-list {
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  .work-card > div:not(.new-label) {
    padding: 16px 18px 18px;
  }

  .filter-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }

  .filter-bar button {
    width: 100%;
  }

  .price-grid article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
    align-items: center;
    padding: 16px 18px;
    text-align: left;
  }

  .price-grid article p:not(.price),
  .price-grid article ul,
  .price-grid article .term {
    grid-column: 1 / -1;
  }

  .price {
    margin: 0;
    font-size: 20px;
    white-space: nowrap;
  }

  .plan-ribbon {
    grid-column: 1 / -1;
    margin: -16px -18px 12px;
    border-radius: 17px 17px 0 0;
    text-align: center;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }

  .cta-band {
    grid-template-columns: minmax(0, 1fr) 128px;
    gap: 10px;
    margin: 32px 22px;
    padding: 22px 18px;
    min-height: 178px;
  }

  .cta-band .button {
    min-width: 0;
    max-width: 190px;
    min-height: 46px;
    gap: 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .cta-band h2 {
    font-size: 20px;
  }

  .cta-band img {
    align-self: end;
    justify-self: end;
    width: 148px;
    min-height: 0;
    max-height: 142px;
    border-radius: 0;
    transform: none;
  }

  .cta-badge {
    left: 18px;
    right: auto;
    bottom: 18px;
    width: 74px;
    height: 74px;
    font-size: 10px;
  }

  .case-points article {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px dashed #d2c2ac;
  }

  .contact-layout {
    gap: 0;
  }

  .side-card {
    padding: 20px;
  }

  .access-grid iframe {
    min-height: 260px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 22px;
  }

  .site-footer nav,
  .footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (max-width: 390px) {
  .page-shell {
    width: calc(100vw - 24px);
  }

  .site-header,
  .hero,
  .section,
  .split-section,
  .strength-section,
  .featured-case,
  .message-section,
  .contact-layout,
  .sub-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 27px;
  }

  .button {
    white-space: normal;
  }

  .cta-band {
    grid-template-columns: minmax(0, 1fr) 86px;
  }

  .cta-band img {
    width: 132px;
    max-height: 126px;
    transform: none;
  }

  .cta-band .button {
    max-width: 174px;
    padding: 10px 14px;
    white-space: nowrap;
  }

  .cta-badge {
    display: none;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: calc(100vw - 24px);
    max-width: 354px;
  }

  .cta-badge {
    display: none;
  }

  .hero,
  .section,
  .split-section,
  .strength-section,
  .featured-case,
  .message-section,
  .contact-layout,
  .sub-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-home h1 {
    font-size: 27px;
  }
}
