/* OMOSEKA 2026 — cinematic people-first redesign */

:root {
  --green: #006b35;
  --green-bright: #66c900;
  --green-dark: #003d27;
  --orange: #f47a18;
  --ink: #10251c;
  --muted: #637169;
  --mist: #edf3ef;
  --paper: #ffffff;
  --line: #d9e3dc;
  --shell: 1180px;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-en: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

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

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

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

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

::selection {
  color: #fff;
  background: var(--green);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: var(--green-dark);
  transform: translateY(-160%);
}

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

.section-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 26px;
  color: var(--green);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.section-label::before {
  width: 36px;
  height: 4px;
  background: var(--green-bright);
  content: "";
}

.section-label span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.section-label-light {
  color: #fff;
}

.section-label-light span {
  color: #b9d3c5;
}

.section-label-orange {
  color: var(--orange);
}

.section-label-orange::before {
  background: var(--orange);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 61, 39, 0.11);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(235px, 1fr) auto auto;
  align-items: center;
  width: min(calc(100% - 48px), 1360px);
  height: 88px;
  margin-inline: auto;
}

.brand {
  width: 235px;
}

.brand img {
  width: 100%;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 34px;
}

.global-nav a {
  position: relative;
  display: grid;
  height: 100%;
  place-items: center;
  padding: 0 17px;
  color: #273a31;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.global-nav a::after {
  position: absolute;
  right: 17px;
  bottom: 20px;
  left: 17px;
  height: 3px;
  background: var(--green-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 156px;
  height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease, transform 180ms ease;
}

.header-contact i {
  color: #c8ffaf;
  font-size: 19px;
  font-style: normal;
}

.header-contact:hover,
.header-contact:focus-visible {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: min(850px, calc(100svh - 88px));
  overflow: hidden;
  background: #eef3ee;
}

.hero-photo,
.hero-photo img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo img {
  object-fit: cover;
  object-position: center top;
  animation: hero-photo-in 1.2s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(246, 250, 247, 0.96) 0%, rgba(246, 250, 247, 0.92) 25%, rgba(246, 250, 247, 0.2) 58%, rgba(0, 61, 39, 0.04) 100%),
    linear-gradient(0deg, rgba(0, 61, 39, 0.16) 0%, transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 96px), 1320px);
  margin-inline: auto;
  padding-top: clamp(80px, 10vh, 116px);
  animation: hero-copy-in 0.8s 0.12s ease-out both;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 28px;
  color: var(--green-dark);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-eyebrow span {
  color: var(--green);
}

.hero-eyebrow i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.hero h1 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(64px, 7.1vw, 108px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: table;
  margin-top: 8px;
  padding: 4px 20px 9px 11px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(0, 61, 39, 0.08);
}

.hero h1 span:last-child {
  color: #fff;
  background: var(--green);
}

.hero-lead {
  margin: 30px 0 0;
  color: #284238;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  height: 58px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button span {
  font-size: 20px;
}

.button-primary {
  color: #fff;
  background: var(--green-dark);
}

.button-primary span {
  color: var(--green-bright);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green);
  transform: translateY(-3px);
}

.button-ghost {
  min-width: 190px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 61, 39, 0.24);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: #fff;
  background: var(--green-dark);
  transform: translateY(-3px);
}

.hero-credit {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: 112px;
  z-index: 4;
  display: grid;
  min-width: 232px;
  padding: 17px 20px 15px;
  color: #fff;
  background: rgba(0, 61, 39, 0.9);
  border-left: 5px solid var(--green-bright);
}

.hero-credit span,
.hero-credit small {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-credit strong {
  margin: 2px 0;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.hero-credit small {
  color: #c3dbc9;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
}

.hero-track {
  position: absolute;
  right: -2%;
  bottom: -1px;
  left: -2%;
  z-index: 5;
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  justify-content: center;
  height: 88px;
  padding-top: 16px;
  color: #fff;
  background: var(--green);
  border-radius: 50% 50% 0 0 / 58% 58% 0 0;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
}

.hero-curve {
  display: none;
}

/* Message */

.message-section {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 170px 0 180px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 52%, rgba(33, 142, 82, 0.55), transparent 38%),
    linear-gradient(145deg, #00492d, #00351f 70%);
}

.message-section::after {
  position: absolute;
  right: -170px;
  bottom: -270px;
  width: 640px;
  height: 640px;
  border: 88px solid rgba(99, 199, 55, 0.08);
  border-radius: 50%;
  content: "";
}

.message-inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 64px), 790px);
  margin-inline: auto;
  text-align: center;
}

.message-inner .section-label {
  justify-content: center;
}

.message-inner h2 {
  margin: 0;
  font-size: clamp(40px, 4.7vw, 64px);
  font-weight: 850;
  line-height: 1.45;
  letter-spacing: -0.045em;
}

.message-copy {
  width: min(100%, 610px);
  margin: 48px auto 0;
  color: #d6e6dc;
  font-size: 14px;
  line-height: 2.2;
  text-align: left;
}

.message-copy p {
  margin: 0 0 20px;
}

.message-copy p:first-child {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.message-statement {
  margin: 58px 0 0;
  color: #fff;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 850;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.message-statement::after {
  display: block;
  width: 66px;
  height: 5px;
  margin: 26px auto 0;
  background: var(--green-bright);
  content: "";
}

.message-photo {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: 6px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 32, 20, 0.28);
}

.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-photo-workspace {
  top: 120px;
  left: max(26px, calc(50% - 660px));
  width: 260px;
  height: 190px;
}

.message-photo-workspace img {
  width: 880px;
  max-width: none;
  object-position: left center;
}

.message-photo-founder {
  top: 175px;
  right: max(28px, calc(50% - 650px));
  width: 245px;
  height: 320px;
}

.message-photo-founder img {
  object-position: 50% 18%;
}

/* Services */

.services-section {
  position: relative;
  z-index: 4;
  margin-top: -78px;
  padding: 186px 0 160px;
  background: var(--mist);
  border-radius: 50% 50% 0 0 / 85px 85px 0 0;
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 90px;
  align-items: end;
}

.services-intro h2,
.strengths-header h2,
.representative-title h2,
.process-header h2,
.karioka-copy h2,
.company-title h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 66px);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.services-intro > p {
  max-width: 470px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2.05;
}

.service-list {
  display: grid;
  gap: 42px;
  margin-top: 84px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
  min-height: 530px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 37, 28, 0.08);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 61, 39, 0.07);
}

.service-card:nth-child(even) .service-graphic {
  order: 2;
}

.service-card:nth-child(even) .service-content {
  order: 1;
}

.service-graphic {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  min-height: 400px;
  background: #ccefb6;
}

.service-card-green .service-graphic {
  background: var(--green);
}

.service-card-orange .service-graphic {
  background: #ffe0c4;
}

.service-graphic::before {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(0, 61, 39, 0.18);
  border-radius: 50%;
  content: "";
}

.service-card-green .service-graphic::before {
  border-color: rgba(255, 255, 255, 0.18);
}

.service-graphic-number {
  position: absolute;
  top: 22px;
  left: 26px;
  color: rgba(0, 61, 39, 0.14);
  font-family: var(--font-en);
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.service-card-green .service-graphic-number {
  color: rgba(255, 255, 255, 0.16);
}

.service-orbit {
  position: relative;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 3px solid rgba(0, 61, 39, 0.55);
  border-radius: 50%;
}

.service-orbit::before,
.service-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.service-orbit::before {
  width: 98px;
  height: 98px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(0, 61, 39, 0.12);
}

.service-orbit::after {
  width: 38px;
  height: 38px;
  background: var(--green);
}

.service-card-green .service-orbit {
  border-color: rgba(255, 255, 255, 0.65);
}

.service-card-green .service-orbit::before {
  background: rgba(255, 255, 255, 0.2);
}

.service-card-green .service-orbit::after {
  background: var(--green-bright);
}

.service-card-orange .service-orbit,
.service-card-orange .service-graphic::before {
  border-color: rgba(242, 122, 26, 0.42);
}

.service-card-orange .service-orbit::after {
  background: var(--orange);
}

.service-orbit i {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0, 61, 39, 0.18);
}

.service-orbit i:nth-child(1) { top: 1px; left: 87px; }
.service-orbit i:nth-child(2) { right: 12px; bottom: 40px; }
.service-orbit i:nth-child(3) { bottom: 35px; left: 8px; }

.service-visual-labels {
  position: absolute;
  right: 24px;
  bottom: 26px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.service-visual-labels span {
  padding: 9px 5px;
  border: 1px solid rgba(0, 61, 39, 0.22);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.service-card-green .service-visual-labels span {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.service-card-orange .service-visual-labels span {
  border-color: rgba(242, 122, 26, 0.25);
  color: #9b4300;
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 6vw, 82px);
}

.service-content > p:first-child {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.service-content h3 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.service-content h3 span {
  display: block;
}

.service-description {
  max-width: 560px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.service-content ul {
  display: grid;
  gap: 8px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  position: relative;
  padding-left: 21px;
  font-size: 13px;
  font-weight: 750;
}

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

.service-card-orange .service-content li::before {
  background: var(--orange);
}

.service-content > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: width 180ms ease, color 180ms ease;
}

.service-content > a span {
  color: var(--green);
  font-size: 18px;
}

.service-content > a:hover,
.service-content > a:focus-visible {
  width: 228px;
  color: var(--green);
}

/* Strengths */

.strengths-section {
  padding: 150px 0 160px;
  background: #fff;
}

.strengths-header {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 70px;
  align-items: end;
}

.strengths-header .section-label {
  align-self: start;
}

.stats-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 82px;
  overflow: hidden;
  color: #fff;
  background: var(--green);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(0, 61, 39, 0.16);
}

.stats-board article {
  min-height: 290px;
  padding: 38px 38px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-board article:last-child {
  border-right: 0;
}

.stats-board span {
  color: #c8ffaf;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.stats-board strong {
  display: block;
  margin-top: 35px;
  font-family: var(--font-en);
  font-size: clamp(70px, 8vw, 110px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
}

.stats-board strong small {
  margin-left: 5px;
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: 0;
}

.stats-board p {
  margin: 20px 0 0;
  color: #e4f0e8;
  font-size: 14px;
  font-weight: 700;
}

.credential-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 74px;
  align-items: center;
  margin-top: 46px;
  padding: 68px 72px;
  background: var(--mist);
  border-radius: 10px;
}

.credential-panel > div > p {
  margin: 0 0 18px;
  color: var(--green);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.credential-panel h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 850;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.credential-panel > div > span {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.credential-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.credential-panel li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid #cad8cf;
  font-size: 14px;
  font-weight: 750;
}

.credential-panel li:first-child {
  border-top: 1px solid #cad8cf;
}

.credential-panel li > span {
  color: var(--green);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 850;
}

/* Representative */

.representative-section {
  padding: 150px 0 170px;
  background: linear-gradient(135deg, #f3f7f5, #e3efe8);
}

.representative-title {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 70px;
  align-items: end;
}

.representative-title .section-label {
  align-self: start;
}

.representative-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(58px, 8vw, 108px);
  align-items: center;
  margin-top: 84px;
}

.representative-photo {
  margin: 0;
}

.representative-photo > img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 61, 39, 0.14);
}

.representative-photo figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 18px;
  align-items: end;
  margin-top: 24px;
  padding-left: 2px;
}

.representative-photo figcaption span {
  grid-column: 1 / -1;
  color: var(--green);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.representative-photo figcaption strong {
  margin-top: 6px;
  font-size: 30px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.representative-photo figcaption small {
  padding-bottom: 7px;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.representative-copy {
  max-width: 560px;
}

.representative-lead {
  margin: 0 0 36px !important;
  color: var(--green-dark) !important;
  font-size: clamp(34px, 3.6vw, 48px) !important;
  font-weight: 850;
  line-height: 1.45 !important;
  letter-spacing: -0.045em;
}

.representative-copy > p {
  margin: 0 0 20px;
  color: #52635a;
  font-size: 14px;
  line-height: 2.15;
}

.representative-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
}

.representative-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(0, 104, 56, 0.24);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 750;
}

/* Process */

.process-section {
  position: relative;
  overflow: hidden;
  padding: 145px 0 150px;
  color: #fff;
  background: #08291c;
}

.process-section::after {
  position: absolute;
  top: -230px;
  right: -170px;
  width: 570px;
  height: 570px;
  border: 74px solid rgba(99, 199, 55, 0.08);
  border-radius: 50%;
  content: "";
}

.process-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 90px;
  align-items: end;
}

.process-header > p {
  margin: 0 0 4px;
  color: #b9cdc1;
  font-size: 14px;
  line-height: 2.05;
}

.process-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 78px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 250px;
  padding: 28px 26px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list li > span {
  color: var(--green-bright);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 850;
}

.process-list strong {
  display: block;
  margin-top: 54px;
  font-size: 28px;
  font-weight: 850;
}

.process-list small {
  display: block;
  margin-top: 8px;
  color: #a6bdb0;
  font-size: 11px;
  line-height: 1.75;
}

.process-list i {
  position: absolute;
  right: 20px;
  bottom: 21px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 22px;
  font-style: normal;
}

.process-list li:last-child i {
  display: none;
}

/* KARIOKA */

.karioka-section {
  padding: 145px 0;
  background: #fff8f1;
}

.karioka-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 80px;
  align-items: center;
}

.karioka-copy > p:not(.section-label) {
  max-width: 520px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2.05;
}

.karioka-copy > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 205px;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.karioka-copy > a span {
  color: var(--orange);
  font-size: 18px;
}

.karioka-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  padding: 58px;
  color: #fff;
  background: var(--orange);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(168, 77, 4, 0.16);
}

.karioka-visual > span {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.karioka-visual > strong {
  display: block;
  margin-top: 35px;
  font-family: var(--font-en);
  font-size: clamp(64px, 7.4vw, 102px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
}

.karioka-visual > small {
  display: block;
  margin-top: 22px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.karioka-road {
  position: absolute;
  right: -80px;
  bottom: -115px;
  width: 450px;
  height: 310px;
  background: #fff;
  border-radius: 50% 50% 0 0;
  transform: rotate(-9deg);
}

.karioka-road::before {
  position: absolute;
  top: 34px;
  right: 48px;
  left: 48px;
  height: 12px;
  border-top: 4px dashed var(--orange);
  content: "";
}

.karioka-road i {
  position: absolute;
  top: -18px;
  width: 38px;
  height: 38px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: var(--green-bright);
}

.karioka-road i:nth-child(1) { left: 70px; }
.karioka-road i:nth-child(2) { left: 170px; background: var(--green); }
.karioka-road i:nth-child(3) { left: 275px; background: #ffd37a; }

/* Company */

.company-section {
  padding: 145px 0 160px;
  background: var(--mist);
}

.company-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 92px;
  align-items: start;
}

.company-title {
  position: sticky;
  top: 128px;
}

.company-title > p:last-child {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2.05;
}

.company-list {
  margin: 0;
  border-top: 1px solid #c7d5cb;
}

.company-list > div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 28px;
  padding: 25px 4px;
  border-bottom: 1px solid #c7d5cb;
}

.company-list dt {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.company-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

/* Contact */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 180px 0 130px;
  color: #fff;
  background: var(--green);
  border-radius: 50% 50% 0 0 / 80px 80px 0 0;
}

.contact-section::after {
  position: absolute;
  top: 210px;
  left: -210px;
  width: 540px;
  height: 540px;
  border: 74px solid rgba(99, 199, 55, 0.11);
  border-radius: 50%;
  content: "";
}

.contact-collage {
  position: absolute;
  top: 78px;
  right: max(24px, calc(50% - 690px));
  z-index: 1;
  display: grid;
  grid-template-columns: 270px 150px;
  gap: 14px;
  width: 434px;
  height: 210px;
}

.contact-collage figure {
  overflow: hidden;
  margin: 0;
  border: 4px solid rgba(255, 255, 255, 0.16);
}

.contact-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-collage figure:first-child img {
  width: 680px;
  max-width: none;
  object-position: left center;
}

.contact-collage figure:last-child img {
  object-position: 50% 18%;
}

.contact-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 74px;
  align-items: start;
}

.contact-copy {
  padding-top: 168px;
}

.contact-copy > p:not(.section-label) {
  margin: 31px 0 0;
  color: #d9ebe0;
  font-size: 14px;
  line-height: 2;
}

.contact-response {
  display: grid;
  gap: 2px;
  width: 240px;
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-response span {
  color: #b8d5c3;
  font-size: 11px;
}

.contact-response strong {
  font-size: 16px;
}

/* Form */

.consultation-form {
  color: var(--ink);
  background: #fff;
  border-radius: 10px;
  padding: clamp(34px, 5vw, 62px);
  box-shadow: 0 28px 80px rgba(0, 45, 26, 0.24);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0;
  color: var(--green);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.form-heading > span {
  color: var(--muted);
  font-size: 11px;
}

.form-heading i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--orange);
}

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

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span {
  font-size: 12px;
  font-weight: 800;
}

.form-field i,
.privacy-consent i {
  margin-left: 5px;
  color: var(--orange);
  font-size: 10px;
  font-style: normal;
}

.form-field small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfdbd3;
  border-radius: 4px;
  color: var(--ink);
  background: #f8faf8;
  outline: 0;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  height: 54px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 170px;
  padding: 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(5, 104, 56, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #99a39d;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  margin-top: 28px;
  padding: 19px;
  background: var(--mist);
  border-radius: 4px;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.privacy-consent label {
  display: grid;
  gap: 6px;
}

.privacy-consent strong {
  font-size: 12px;
}

.privacy-consent small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.75;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 66px;
  margin-top: 24px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--green-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  transition: background-color 180ms ease, transform 180ms ease;
}

.form-submit span:last-child {
  color: var(--green-bright);
  font-size: 21px;
}

.form-submit:hover:not(:disabled),
.form-submit:focus-visible:not(:disabled) {
  background: var(--green);
  transform: translateY(-2px);
}

.form-submit:disabled {
  cursor: progress;
  opacity: 0.65;
}

.form-status {
  margin-top: 16px;
}

.form-status:empty {
  display: none;
}

.form-status p,
.form-status.form-success,
.form-status.form-error {
  margin: 0;
  padding: 13px 15px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.7;
}

.form-success,
.form-status.form-success {
  color: #07552f;
  background: #e4f5e8;
}

.form-error,
.form-status.form-error {
  color: #8b2a1d;
  background: #fff0ed;
}

/* Footer */

.site-footer {
  padding: 74px max(32px, calc((100% - var(--shell)) / 2)) 30px;
  color: #fff;
  background: #062318;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.footer-top img {
  width: 255px;
  padding: 10px 13px;
  background: #fff;
}

.footer-top p {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.footer-bottom {
  display: grid;
  gap: 38px;
  padding-top: 34px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
}

.footer-bottom nav a {
  color: #cfddd4;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #82998b;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-bottom > div a {
  color: #fff;
}

@keyframes hero-photo-in {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .global-nav a { padding-inline: 11px; font-size: 12px; }
  .global-nav { margin-right: 20px; }
  .message-photo-workspace { left: 24px; width: 210px; }
  .message-photo-founder { right: 24px; width: 205px; }
  .contact-collage { right: 24px; }
}

@media (max-width: 920px) {
  .section-shell { width: min(calc(100% - 44px), var(--shell)); }
  .header-inner { grid-template-columns: 1fr auto; width: calc(100% - 36px); height: 76px; }
  .brand { width: 205px; }
  .global-nav,
  .header-contact { display: none; }

  .mobile-menu { position: relative; z-index: 4; display: block; }
  .mobile-menu summary {
    display: grid;
    gap: 7px;
    width: 48px;
    height: 48px;
    place-content: center;
    border-radius: 50%;
    background: var(--green);
    cursor: pointer;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 21px; height: 2px; background: #fff; transition: transform 180ms ease; }
  .mobile-menu[open] summary span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .mobile-menu[open] summary span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-menu nav {
    position: absolute;
    top: 58px;
    right: 0;
    display: grid;
    width: min(340px, calc(100vw - 36px));
    max-height: calc(100svh - 94px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 24px 60px rgba(0, 61, 39, 0.18);
  }
  .mobile-menu nav a { display: flex; align-items: center; min-height: 54px; padding: 8px 3px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 750; }
  .mobile-menu nav a:last-child { border-bottom: 0; color: var(--green); }

  .hero { min-height: 760px; }
  .hero-content { width: calc(100% - 48px); padding-top: 84px; }
  .hero h1 { font-size: clamp(54px, 10vw, 84px); }
  .hero-credit { right: 24px; bottom: 105px; }

  .message-section { min-height: auto; padding: 150px 0 150px; }
  .message-photo { opacity: 0.35; }
  .message-photo-workspace { top: 84px; left: -60px; }
  .message-photo-founder { top: 115px; right: -55px; }
  .message-inner { width: min(calc(100% - 48px), 700px); }

  .services-intro,
  .process-header,
  .karioka-layout,
  .company-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-intro > p,
  .process-header > p { max-width: 600px; }

  .service-card { grid-template-columns: 0.8fr 1.2fr; }
  .service-content { padding: 48px; }

  .strengths-header,
  .representative-title { grid-template-columns: 1fr; gap: 18px; }
  .stats-board { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats-board article { min-height: 220px; padding: 30px 26px; }
  .stats-board strong { font-size: clamp(58px, 8vw, 72px); }
  .credential-panel { grid-template-columns: 1fr; gap: 44px; padding: 48px; }

  .representative-layout { grid-template-columns: minmax(280px, .82fr) 1fr; gap: 50px; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(3) { border-left: 1px solid rgba(255,255,255,.2); }
  .process-list li { border-bottom: 1px solid rgba(255,255,255,.2); }

  .karioka-layout { grid-template-columns: 1fr 1fr; }
  .karioka-visual { min-height: 390px; padding: 44px 32px; }
  .karioka-visual > strong { font-size: clamp(50px, 7vw, 64px); }
  .company-title { position: static; }
  .contact-collage { top: 64px; right: 22px; width: 390px; grid-template-columns: 240px 136px; }
  .contact-copy { max-width: 620px; padding-top: 164px; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 76px; }
  body { font-size: 15px; }
  .section-shell { width: calc(100% - 36px); }
  .section-label { gap: 11px; margin-bottom: 20px; font-size: 10px; }
  .section-label::before { width: 25px; height: 3px; }
  .section-label span { font-size: 10px; }

  .hero { min-height: 820px; background: #f4f7f4; }
  .hero-photo { height: 47%; }
  .hero-photo img { object-position: 63% top; }
  .hero-shade { height: 48%; background: linear-gradient(90deg, rgba(255,255,255,.28), transparent 48%); }
  .hero-content { width: calc(100% - 36px); padding-top: 390px; }
  .hero-eyebrow { margin-bottom: 16px; font-size: 9px; }
  .hero h1 { font-size: clamp(44px, 14vw, 64px); line-height: 1.08; }
  .hero h1 span { margin-top: 5px; padding: 4px 13px 7px 7px; }
  .hero-lead { margin-top: 20px; font-size: 13px; line-height: 1.8; }
  .hero-actions { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 9px; margin-top: 23px; }
  .button { min-width: 0; width: 100%; height: 52px; padding-inline: 15px; font-size: 12px; }
  .button-ghost { width: 100%; }
  .hero-credit { top: clamp(276px, 75vw, 306px); right: 16px; bottom: auto; min-width: 184px; padding: 11px 13px; border-left-width: 4px; }
  .hero-credit span { font-size: 7px; }
  .hero-credit strong { font-size: 16px; }
  .hero-credit small { font-size: 8px; }
  .hero-track { right: -8%; left: -8%; height: 70px; gap: 12px; padding-inline: 20px; font-size: 8px; letter-spacing: .11em; }
  .hero-track i { width: 4px; height: 4px; }

  .message-section { padding: 112px 0 118px; }
  .message-photo-workspace { top: 54px; left: -80px; width: 180px; height: 130px; }
  .message-photo-founder { top: 75px; right: -65px; width: 155px; height: 205px; }
  .message-inner { width: calc(100% - 36px); }
  .message-inner h2 { font-size: clamp(29px, 8.6vw, 42px); line-height: 1.5; }
  .message-copy { margin-top: 36px; font-size: 13px; line-height: 2; }
  .message-copy p:first-child { font-size: 16px; }
  .message-statement { margin-top: 40px; font-size: clamp(26px, 7.6vw, 32px); }

  .services-section { margin-top: -48px; padding: 112px 0 96px; border-radius: 50% 50% 0 0 / 48px 48px 0 0; }
  .services-intro { gap: 25px; }
  .services-intro h2,
  .strengths-header h2,
  .representative-title h2,
  .process-header h2,
  .karioka-copy h2,
  .company-title h2,
  .contact-copy h2 { font-size: clamp(34px, 9.6vw, 46px); line-height: 1.4; }
  .services-intro > p { font-size: 13px; line-height: 1.95; }
  .service-list { margin-top: 52px; gap: 26px; }
  .service-card { grid-template-columns: 1fr; min-height: 0; }
  .service-card:nth-child(even) .service-graphic,
  .service-card:nth-child(even) .service-content { order: initial; }
  .service-graphic { min-height: clamp(270px, 74vw, 320px); }
  .service-graphic-number { font-size: 76px; }
  .service-orbit { width: 150px; height: 150px; }
  .service-orbit i:nth-child(1) { left: 66px; }
  .service-content { padding: 36px 26px 40px; }
  .service-content h3 { font-size: clamp(30px, 8.8vw, 35px); }
  .service-description { font-size: 13px; line-height: 1.95; }

  .strengths-section,
  .representative-section,
  .process-section,
  .karioka-section,
  .company-section { padding: 92px 0 98px; }
  .stats-board { grid-template-columns: 1fr; }
  .stats-board { margin-top: 48px; }
  .stats-board article { min-height: 176px; padding: 28px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stats-board article:last-child { border-bottom: 0; }
  .stats-board strong { margin-top: 18px; font-size: 68px; }
  .credential-panel { margin-top: 26px; padding: 38px 24px; }
  .credential-panel li { grid-template-columns: 34px 1fr; min-height: 63px; font-size: 12px; line-height: 1.55; }

  .representative-layout { grid-template-columns: 1fr; gap: 42px; margin-top: 54px; }
  .representative-photo { width: min(100%, 520px); margin-inline: auto; }
  .representative-photo figcaption { grid-template-columns: 1fr; }
  .representative-photo figcaption small { padding: 0; }
  .representative-copy { max-width: none; }
  .representative-lead { font-size: clamp(29px, 8vw, 34px) !important; }

  .process-header { gap: 28px; }
  .process-list { grid-template-columns: 1fr; margin-top: 48px; }
  .process-list li,
  .process-list li:nth-child(3) { min-height: 160px; border-left: 1px solid rgba(255,255,255,.2); }
  .process-list strong { margin-top: 28px; }
  .process-list i { transform: rotate(90deg); }

  .karioka-layout { grid-template-columns: 1fr; gap: 48px; }
  .karioka-visual { min-height: 340px; padding: 36px 26px; }
  .karioka-visual > strong { font-size: clamp(48px, 16vw, 60px); }
  .karioka-road { right: -160px; bottom: -120px; }

  .company-layout { gap: 52px; }
  .company-list > div { grid-template-columns: 100px 1fr; gap: 16px; padding: 21px 2px; }
  .company-list dd { font-size: 13px; }

  .contact-section { padding: 88px 0 70px; border-radius: 50% 50% 0 0 / 44px 44px 0 0; }
  .contact-collage { position: relative; top: auto; right: auto; grid-template-columns: 1.45fr .75fr; gap: 8px; width: calc(100% - 36px); height: clamp(150px, 43vw, 190px); margin: 0 auto 38px; }
  .contact-layout { gap: 44px; }
  .contact-copy { padding-top: 0; }
  .consultation-form { padding: 32px 20px 28px; }
  .form-heading { margin-bottom: 28px; }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-field-wide { grid-column: auto; }
  .form-heading > span { font-size: 9px; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; }
  .privacy-consent small { font-size: 11px; }

  .site-footer { padding: 58px 18px 24px; }
  .footer-top { display: grid; gap: 28px; padding-bottom: 38px; }
  .footer-top img { width: 210px; }
  .footer-top p { font-size: 27px; }
  .footer-bottom nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px 18px; }
  .footer-bottom > div { align-items: flex-end; }
}

@media (max-width: 480px) {
  .header-inner { width: calc(100% - 28px); }
  .brand { width: min(196px, calc(100vw - 92px)); }
  .mobile-menu nav { right: -2px; width: calc(100vw - 28px); }

  .hero-content,
  .message-inner,
  .section-shell { width: calc(100% - 32px); }
  .hero h1 { letter-spacing: -0.065em; }
  .hero-lead { font-size: 12.5px; }
  .hero-credit { right: 12px; min-width: 172px; }
  .hero-track { gap: 9px; padding-inline: 16px; letter-spacing: .08em; }

  .message-photo-workspace { left: -92px; }
  .message-photo-founder { right: -74px; }
  .service-visual-labels { right: 16px; bottom: 18px; left: 16px; gap: 6px; }
  .service-visual-labels span { font-size: 10px; }
  .service-content { padding-inline: 22px; }
  .service-content > a { width: min(100%, 210px); }
  .credential-panel { padding: 34px 20px; }

  .company-list > div { grid-template-columns: 1fr; gap: 6px; padding: 18px 2px; }
  .company-list dt { font-size: 11px; }
  .company-list dd { font-size: 14px; }

  .contact-collage { width: calc(100% - 32px); }
  .contact-response { width: 100%; }
  .consultation-form { padding: 30px 18px 26px; }
  .form-heading { align-items: flex-start; gap: 10px; }
  .privacy-consent { padding: 16px 14px; }

  .footer-top p { font-size: 24px; }
  .footer-bottom > div { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (max-width: 360px) {
  .hero-actions { gap: 6px; }
  .button { padding-inline: 12px; font-size: 11px; }
  .hero-eyebrow { gap: 9px; letter-spacing: .12em; }
  .hero-track { font-size: 7px; }
  .form-heading p { font-size: 11px; }
  .footer-bottom nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
