:root {
  --snow: #f6f2e9;
  --paper: #fffdf8;
  --mist: #e7efeb;
  --ink: #17282a;
  --muted: #5e6d6b;
  --line: #cbd5cf;
  --forest: #0b4945;
  --forest-dark: #082f2d;
  --lake: #2d7888;
  --coral: #df735f;
  --coral-dark: #c75f4d;
  --white: #fff;
  --container: 1180px;
  --shadow: 0 22px 50px rgba(16, 49, 48, 0.12);
  --soft-shadow: 0 12px 30px rgba(16, 49, 48, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--snow);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.28;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.42;
}

p {
  margin-bottom: 18px;
}

section {
  scroll-margin-top: 82px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--forest-dark);
  color: #fff;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(23, 40, 42, 0.12);
  background: rgba(246, 242, 233, 0.96);
}

.site-header-inner {
  display: flex;
  width: min(var(--container), calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand > img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(45, 120, 136, 0.22);
  border-radius: 13px;
  background: #fff;
  object-fit: cover;
}

.brand > span {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  color: var(--forest);
  font-size: 14px;
  letter-spacing: 0.035em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  position: relative;
  color: #334b4c;
  font-size: 13px;
  font-weight: 800;
}

nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--lake);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(45, 120, 136, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 102px;
  left: -210px;
  width: 430px;
  height: 430px;
}

.hero::after {
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
}

.hero-inner {
  display: grid;
  width: min(var(--container), calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 58px 0 70px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 4vw, 58px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.work-label,
.service-kicker,
.profile-label {
  margin-bottom: 14px;
  color: var(--lake);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(42px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.2;
}

.hero h1 span,
.hero h1 em {
  display: block;
  white-space: nowrap;
}

.hero h1 em {
  color: var(--forest);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #4d6060;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 2;
}

.hero-audience {
  display: flex;
  max-width: 620px;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 25px;
  color: #405758;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
}

.hero-audience span {
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(199, 95, 77, 0.2);
  color: #fff;
}

.button.primary:hover {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
}

.button.secondary {
  background: transparent;
  color: var(--forest);
}

.button.secondary:hover {
  background: var(--forest);
  color: #fff;
}

.hero-proof {
  display: grid;
  max-width: 620px;
  margin: 34px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.hero-proof li {
  padding: 0 16px;
}

.hero-proof li:first-child {
  padding-left: 0;
}

.hero-proof li + li {
  border-left: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 4px;
  color: var(--forest);
  font-size: 14px;
  line-height: 1.4;
}

.hero-proof span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-width: 0;
  height: min(610px, 66vw);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(45, 120, 136, 0.2);
  border-radius: 180px 24px 24px 24px;
  background: #dcecee;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 166px 16px 16px 16px;
  content: "";
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--coral);
  background: rgba(8, 47, 45, 0.9);
  color: #fff;
}

.hero-visual figcaption span,
.hero-visual figcaption strong {
  display: block;
}

.hero-visual figcaption span {
  margin-bottom: 5px;
  color: #b9dce1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero-visual figcaption strong {
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: clamp(86px, 9vw, 126px) 24px;
}

.section-inner,
.contact-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(38px, 5vw, 66px);
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading.light h2 {
  color: #fff;
}

.section-heading.light > p:not(.eyebrow) {
  color: #c8d9d6;
}

.portfolio-counter {
  display: inline-flex;
  margin-left: 10px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #a9d7dc;
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.works {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.works::before {
  position: absolute;
  top: 82px;
  right: -90px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.works .eyebrow,
.works .work-label {
  color: #9bcfd6;
}

.portfolio-group + .portfolio-group {
  margin-top: clamp(54px, 7vw, 88px);
}

.portfolio-group-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-group-heading .eyebrow {
  margin-bottom: 9px;
}

.portfolio-group-heading h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.portfolio-group-heading > p {
  max-width: 390px;
  margin-bottom: 0;
  color: #c8d9d6;
  font-size: 14px;
  line-height: 1.8;
}

.portfolio-group .portfolio-grid {
  margin-top: 0;
}

.featured-work {
  display: grid;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #123d3a;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.video-poster {
  position: relative;
  display: grid;
  width: 100%;
  place-items: center;
  overflow: hidden;
  background: #061f1f;
  color: #fff;
  text-decoration: none;
}

.video-poster::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(8, 47, 45, 0.1);
  content: "";
  transition: background 180ms ease;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.video-poster:hover img {
  transform: scale(1.035);
}

.video-poster:hover::before {
  background: rgba(8, 47, 45, 0.24);
}

.video-play {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(8, 47, 45, 0.78);
  box-shadow: 0 10px 24px rgba(8, 47, 45, 0.28);
  transition: background 180ms ease, transform 180ms ease;
}

.video-play::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  content: "";
}

.video-poster:hover .video-play,
.video-poster:focus-visible .video-play {
  background: var(--coral);
  transform: scale(1.06);
}

.video-poster.portrait {
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  justify-self: center;
}

.featured-work > .video-poster.portrait {
  width: min(100%, 320px);
}

.video-poster.portrait.compact {
  width: min(100%, 210px);
}

.video-poster.landscape {
  aspect-ratio: 16 / 9;
}

.featured-work-copy {
  max-width: 570px;
}

.featured-work-copy h3 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.3;
}

.featured-work-copy > p:not(.work-label) {
  color: #d4e1de;
  font-size: 16px;
}

.work-tags,
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.work-tags li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #e0ebe8;
  font-size: 11px;
  font-weight: 800;
}

.portfolio-grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-grid > .portfolio-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

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

.portfolio-grid-pr > .portfolio-item:last-child:nth-child(odd) {
  grid-column: auto;
}

.portfolio-grid-pr .work-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.portfolio-grid-pr .video-poster.portrait.compact {
  width: min(100%, 230px);
  align-self: center;
}

.work-card {
  display: grid;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0e3e3b;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.work-card.wide {
  display: block;
}

.work-card.wide .video-poster {
  margin-bottom: 24px;
}

.work-card-copy {
  min-width: 0;
}

.work-card-copy h3 {
  color: #fff;
  font-size: clamp(21px, 2vw, 28px);
}

.work-card-copy > p:not(.work-label) {
  margin-bottom: 0;
  color: #c8d9d6;
  font-size: 14px;
}

.services {
  background: var(--snow);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.service-card.primary-service {
  border-color: rgba(223, 115, 95, 0.62);
}

.service-card.primary-service::before {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  content: "MAIN";
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.service-image {
  display: grid;
  height: 350px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #edf3f0;
}

.service-image.landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image.portrait {
  padding: 20px;
  background: #f7f5ef;
}

.service-image.portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 26px 30px;
}

.service-number {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.service-kicker {
  margin-bottom: 8px;
}

.service-copy h3 {
  font-size: clamp(23px, 2.2vw, 30px);
}

.service-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.usecases {
  background: var(--paper);
}

.usecase-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.usecase-grid article {
  min-height: 250px;
  padding: 28px 24px;
}

.usecase-grid article + article {
  border-left: 1px solid var(--line);
}

.usecase-grid article > span {
  display: block;
  margin-bottom: 20px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.usecase-grid h3 {
  font-size: clamp(20px, 1.8vw, 25px);
}

.usecase-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.value-strip {
  display: grid;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--snow);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-strip article {
  padding: 24px 26px;
}

.value-strip article + article {
  border-left: 1px solid var(--line);
}

.value-strip span,
.value-strip strong {
  display: block;
}

.value-strip span {
  margin-bottom: 8px;
  color: var(--lake);
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-strip strong {
  margin-bottom: 7px;
  color: var(--forest);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 18px;
}

.value-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.specialty {
  background: #f0f2eb;
}

.specialty-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.specialty-copy {
  max-width: 650px;
}

.specialty-copy h2 {
  margin-bottom: 24px;
}

.specialty-lead {
  color: #3d5554;
  font-size: 18px;
  line-height: 2;
}

.specialty-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
}

.specialty-source {
  display: inline-flex;
  margin-top: 8px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(45, 120, 136, 0.46);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.specialty-proof {
  display: grid;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.specialty-proof li {
  min-height: 180px;
  padding: 24px 20px;
}

.specialty-proof li + li {
  border-left: 1px solid var(--line);
}

.specialty-proof strong,
.specialty-proof span {
  display: block;
}

.specialty-proof strong {
  margin-bottom: 10px;
  color: var(--forest);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 17px;
  line-height: 1.5;
}

.specialty-proof span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.about::after {
  position: absolute;
  right: -170px;
  bottom: 100px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(45, 120, 136, 0.15);
  border-radius: 50%;
  content: "";
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(42px, 7vw, 98px);
  align-items: center;
}

.about-copy {
  max-width: 660px;
}

.about-lead {
  color: #384f50;
  font-size: 18px;
  line-height: 2;
}

.about-copy > p:last-child {
  color: var(--muted);
}

.profile-card {
  display: grid;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(45, 120, 136, 0.22);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.profile-card > img {
  width: 116px;
  height: 116px;
  border-radius: 24px;
  object-fit: cover;
}

.profile-card h3 {
  margin-bottom: 5px;
  font-size: 27px;
}

.profile-card h3 span {
  white-space: nowrap;
}

.profile-label {
  margin-bottom: 8px;
}

.profile-role {
  margin-bottom: 13px;
  color: var(--lake);
  font-size: 14px;
  font-weight: 800;
}

.profile-card div > p:last-of-type {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.profile-tags {
  margin-top: 19px;
}

.profile-tags li {
  padding: 5px 9px;
  border: 1px solid rgba(45, 120, 136, 0.24);
  border-radius: 999px;
  color: #496263;
  font-size: 10px;
  font-weight: 800;
}

.creator-story {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 54px;
  padding: clamp(30px, 5vw, 58px);
  border-top: 1px solid rgba(45, 120, 136, 0.32);
  border-bottom: 1px solid rgba(45, 120, 136, 0.32);
  grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 70px);
}

.creator-story-heading h3 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 38px);
}

.creator-story-body > p {
  color: #4e6262;
  font-size: 15px;
}

.creator-values {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.creator-values li {
  padding: 20px 18px 0;
}

.creator-values li:first-child {
  padding-left: 0;
}

.creator-values li + li {
  border-left: 1px solid var(--line);
}

.creator-values span,
.creator-values strong,
.creator-values small {
  display: block;
}

.creator-values span {
  margin-bottom: 10px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
}

.creator-values strong {
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 14px;
}

.creator-values small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.profile-awards {
  position: relative;
  z-index: 1;
  margin-top: 68px;
}

.profile-awards-heading {
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
}

.profile-awards-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.profile-awards-heading h3 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.3vw, 42px);
}

.profile-awards-heading > p:last-child {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
}

.planning-card {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 68px;
  overflow: hidden;
  border: 1px solid rgba(45, 120, 136, 0.22);
  border-radius: 24px;
  background: var(--paper);
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.planning-card > img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.planning-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 60px);
}

.planning-card h3 {
  font-size: clamp(28px, 3.2vw, 42px);
}

.planning-card > div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.trust {
  background: var(--paper);
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: end;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  padding-bottom: 8px;
}

.award-summary {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--snow);
  grid-template-columns: 240px minmax(0, 1fr);
}

.award-count {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--forest);
}

.award-count strong {
  font-family: Georgia, serif;
  font-size: 76px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.award-count span {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.selected-awards {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.selected-awards li {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
}

.selected-awards li + li {
  border-left: 1px solid var(--line);
}

.selected-awards time {
  margin-bottom: 14px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.selected-awards span {
  color: #496061;
  font-size: 13px;
  line-height: 1.8;
}

.selected-awards strong {
  color: var(--ink);
  font-size: 15px;
}

.award-details {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fbfaf5;
}

.award-details summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

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

.award-details summary::after {
  color: var(--lake);
  content: "+";
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

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

.award-details summary small {
  margin-left: auto;
  color: var(--lake);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.award-history {
  display: grid;
  margin: 0;
  padding: 0 22px 24px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.award-history li {
  display: grid;
  padding: 14px 14px 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  color: #506262;
  font-size: 12px;
}

.award-history li:nth-child(even) {
  padding-right: 0;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.award-history time {
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
}

.award-history strong {
  color: var(--forest);
  font-size: 12px;
  white-space: nowrap;
}

.process-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 220px;
  padding: 30px 28px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
}

.process-list li + li {
  border-left: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

.process-list h3 {
  font-size: 24px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq {
  background: var(--snow);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.faq-layout .section-heading {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.7;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--lake);
  content: "+";
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.faq-list p {
  max-width: 680px;
  margin: -2px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 142px) 24px;
  background: var(--forest);
  color: #fff;
  text-align: center;
}

.contact::before,
.contact::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.contact::before {
  top: -190px;
  left: -120px;
  width: 420px;
  height: 420px;
}

.contact::after {
  right: -110px;
  bottom: -220px;
  width: 480px;
  height: 480px;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.contact .eyebrow {
  color: #a9d7dc;
}

.contact h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 72px);
}

.contact-inner > p:not(.eyebrow) {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: #d4e1de;
}

.contact-actions {
  justify-content: center;
}

.light-button {
  border-color: rgba(255, 255, 255, 0.62) !important;
  color: #fff !important;
}

.light-button:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--forest) !important;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  color: #fff;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-link:hover {
  background: #fff;
  color: var(--forest);
  transform: translateY(-2px);
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.mobile-consult {
  display: none;
}

footer {
  padding: 28px 20px;
  background: var(--forest-dark);
  color: #a9bfbc;
  font-size: 12px;
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(44px, 5.6vw, 62px);
  }

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

  .primary-service {
    grid-column: 1 / -1;
  }

  .primary-service .service-image {
    height: 410px;
  }

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

  .usecase-grid article:nth-child(3) {
    border-left: 0;
  }

  .usecase-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .specialty-proof {
    max-width: 760px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    max-width: 720px;
  }

  .selected-awards {
    grid-template-columns: 1fr;
  }

  .selected-awards li {
    min-height: 0;
  }

  .selected-awards li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .site-header-inner {
    width: min(100% - 36px, var(--container));
  }

  nav {
    gap: 16px;
  }

  nav a {
    font-size: 12px;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 68px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-visual {
    width: 100%;
    height: min(570px, 78vw);
    border-radius: 150px 22px 22px 22px;
  }

  .featured-work {
    grid-template-columns: 1fr;
  }

  .featured-work-copy {
    max-width: 650px;
  }

  .portfolio-group-heading {
    align-items: flex-start;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  }

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

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

  .profile-awards-heading {
    grid-template-columns: 1fr;
  }

  .profile-awards-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .planning-card > img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .split-heading {
    grid-template-columns: 1fr;
  }

  .award-summary {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 0;
  }

  .process-list li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    position: static;
  }

  .site-header-inner {
    min-height: 68px;
  }

  nav {
    display: none;
  }

  .brand > img {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 78px 20px;
  }

  .hero-inner {
    width: calc(100% - 40px);
    padding: 20px 0 28px;
    gap: 16px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(38px, 10.7vw, 50px);
  }

  .hero-lead {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions {
    gap: 4px;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 16px;
    padding: 8px 0;
  }

  .hero-audience {
    margin-bottom: 14px;
  }

  .hero-proof li {
    padding: 0 9px;
  }

  .hero-proof strong {
    font-size: 12px;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .portfolio-group-heading {
    display: block;
  }

  .portfolio-group-heading > p {
    margin-top: 12px;
  }

  .hero-visual {
    height: 230px;
    border-radius: 110px 18px 18px 18px;
  }

  .hero .hero-proof span {
    font-size: 12px;
    line-height: 1.35;
  }

  .works.section {
    padding-top: 0;
  }

  .hero-visual::before {
    inset: 10px;
    border-radius: 101px 12px 12px 12px;
  }

  .hero-visual figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  h2 {
    font-size: clamp(32px, 9.2vw, 42px);
  }

  .featured-work {
    padding: 20px;
  }

  .video-poster.portrait {
    width: min(100%, 300px);
  }

  /* スマホでは代表作以外を一覧として比較しやすい横長カードにする。 */
  .work-card,
  .work-card.wide,
  .portfolio-grid-pr .work-card {
    display: grid;
    min-height: 176px;
    padding: 14px;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .work-card .video-poster,
  .work-card.wide .video-poster,
  .work-card .video-poster.portrait.compact,
  .portfolio-grid-pr .video-poster.portrait.compact,
  .work-card .video-poster.landscape {
    width: 112px;
    aspect-ratio: 4 / 5;
    align-self: start;
    justify-self: start;
    margin-bottom: 0;
  }

  .work-card .video-poster.landscape img {
    object-fit: contain;
  }

  .work-card .video-play {
    width: 44px;
    height: 44px;
  }

  .work-card .video-play::before {
    margin-left: 3px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }

  .portfolio-grid,
  .portfolio-grid-pr {
    gap: 12px;
  }

  .portfolio-group + .portfolio-group {
    margin-top: 42px;
  }

  .work-card-copy {
    overflow-wrap: anywhere;
  }

  .work-card .work-label {
    margin-bottom: 6px;
  }

  .works .work-card-copy h3 {
    margin-bottom: 8px;
    line-height: 1.35;
  }

  .works .work-card-copy h3 br {
    display: none;
  }

  .works .work-card-copy > p:not(.work-label) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .primary-service {
    grid-column: auto;
  }

  .service-image,
  .primary-service .service-image {
    height: 330px;
  }

  .value-strip,
  .creator-values,
  .award-history {
    grid-template-columns: 1fr;
  }

  .value-strip article + article,
  .creator-values li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .creator-values li,
  .creator-values li:first-child {
    padding: 18px 0;
  }

  .award-history li,
  .award-history li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .profile-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
  }

  .profile-card > img {
    width: 88px;
    height: 88px;
    border-radius: 19px;
  }

  .profile-card h3 {
    font-size: 23px;
  }

  .planning-card {
    margin-top: 48px;
  }

  .award-summary {
    grid-template-columns: 1fr;
  }

  .award-count {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .award-count strong {
    font-size: 64px;
  }

  .selected-awards li {
    padding: 22px;
  }

  .process-list li {
    padding: 24px 4px;
  }

  .contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .mobile-consult {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 60;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 999px;
    background: var(--forest);
    box-shadow: 0 14px 32px rgba(8, 47, 45, 0.28);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-consult.is-hidden {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-visual {
    height: 180px;
    border-radius: 88px 16px 16px 16px;
  }

  .hero-visual::before {
    border-radius: 80px 10px 10px 10px;
  }

  .hero-visual > img {
    object-position: 69% center;
  }

  .hero-visual figcaption {
    padding: 12px 14px;
  }

  .hero-visual figcaption strong {
    font-size: 12px;
  }

  .service-image,
  .primary-service .service-image {
    height: 300px;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .usecase-grid article + article,
  .usecase-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .specialty-proof {
    grid-template-columns: 1fr;
  }

  .specialty-proof li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .profile-card > img {
    width: 96px;
    height: 96px;
  }

  .planning-card > div {
    padding: 28px 22px 32px;
  }

  .faq-list summary {
    padding-right: 42px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.offer-summary {
  background: var(--paper);
}

.offer-summary .section-heading {
  max-width: none;
}

.offer-grid {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  min-width: 0;
  padding: 30px 28px 34px;
}

.offer-card + .offer-card {
  border-left: 1px solid var(--line);
}

.offer-card > span,
.offer-intake li > span {
  display: block;
  margin-bottom: 18px;
  color: var(--lake);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.offer-card h3 {
  margin-bottom: 12px;
  font-size: 25.6px;
}

.offer-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.offer-intake-heading {
  margin: 34px 0 14px;
  color: var(--forest);
  font-size: 16px;
  font-weight: 900;
}

.offer-intake {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.offer-intake li {
  display: grid;
  min-width: 0;
  padding: 20px 22px 22px;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
}

.offer-intake li + li {
  border-left: 1px solid var(--line);
}

.offer-intake li:nth-child(3n + 1) {
  border-left: 0;
}

.offer-intake li:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.offer-intake li > span {
  margin: 1px 0 0;
  font-size: 14px;
}

.offer-intake strong {
  display: block;
  font-size: 16px;
  line-height: 1.55;
}

.offer-intake small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.offer-intake-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card + .offer-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .offer-intake li:nth-child(3n + 1) {
    border-left: 1px solid var(--line);
  }

  .offer-intake li:nth-child(2n + 1) {
    border-left: 0;
  }

  .offer-intake li:nth-child(n + 4) {
    border-top: 0;
  }

  .offer-intake li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .offer-card {
    padding: 24px 20px 28px;
  }

  .offer-intake {
    grid-template-columns: 1fr;
  }

  .offer-intake li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
