:root {
  --paper: #f8f7f2;
  --paper-blue: #eef7f8;
  --surface: #ffffff;
  --ink: #15343b;
  --ink-soft: #51666b;
  --deep: #075a68;
  --deep-2: #073f4b;
  --aqua: #08a9bb;
  --aqua-light: #bdecef;
  --coral: #e87961;
  --coral-soft: #f8d8cf;
  --line: #d8e4e3;
  --shadow: 0 22px 70px rgba(7, 63, 75, 0.1);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --sans: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: "Noto Serif JP", YuMincho, "Yu Mincho", serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --content: 1180px;
  --header-h: 82px;
  --safe-top: env(safe-area-inset-top);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

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

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
  line-height: 1.45;
}

p {
  color: var(--ink-soft);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--deep-2);
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 48px), 840px);
}

.section {
  position: relative;
  padding-block: clamp(76px, 9vw, 132px);
}

.section--tight {
  padding-block: clamp(64px, 7vw, 96px);
}

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

.section--white {
  background: var(--surface);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--deep);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 24px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.section-title {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(29px, 4.2vw, 50px);
  font-weight: 500;
  letter-spacing: 0.045em;
}

.section-lead {
  max-width: 690px;
  margin-bottom: 0;
  font-size: clamp(15px, 1.5vw, 17px);
}

.section-heading {
  margin-bottom: clamp(36px, 6vw, 66px);
}

.section-heading--center {
  text-align: center;
}

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

.section-heading--center .section-lead {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--deep);
  font-weight: 700;
}

.text-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button::after {
  content: "→";
  font-size: 1.1em;
}

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

.button--primary {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 14px 30px rgba(7, 90, 104, 0.2);
}

.button--primary:hover {
  background: var(--deep-2);
  box-shadow: 0 18px 36px rgba(7, 63, 75, 0.25);
}

.button--coral {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(232, 121, 97, 0.22);
}

.button--coral:hover {
  background: #d96751;
}

.button--ghost {
  color: var(--deep);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.button--ghost:hover {
  border-color: var(--aqua);
  background: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-h);
  padding-top: var(--safe-top);
  border-bottom: 1px solid rgba(216, 228, 227, 0.8);
  background: rgba(248, 247, 242, 0.9);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(calc(100% - 40px), 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 48px;
  align-items: center;
}

.site-logo img {
  width: 214px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a:not(.header-entry)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  content: "";
  transition: transform 0.25s ease;
}

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

.header-entry {
  padding: 9px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--deep);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  position: relative;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 12px;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: top 0.25s ease, transform 0.25s ease;
}

.menu-button span:first-child {
  top: 18px;
}

.menu-button span:last-child {
  top: 28px;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: calc(var(--header-h) + env(safe-area-inset-top)) 0 0;
  z-index: 90;
  overflow-y: auto;
  padding: 28px 24px calc(42px + env(safe-area-inset-bottom));
  background: var(--paper);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav__inner {
  width: min(100%, 620px);
  margin-inline: auto;
}

.mobile-nav__links {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.mobile-nav__links a {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

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

.mobile-nav__entry {
  width: 100%;
  margin-top: 28px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-h) + 54px) 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(189, 236, 239, 0.78), transparent 34%),
    linear-gradient(135deg, #faf9f4 0%, #eef7f8 100%);
}

.hero::before {
  position: absolute;
  top: 18%;
  left: -170px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(8, 169, 187, 0.22);
  border-radius: 50%;
  content: "";
}

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

.hero__copy {
  padding-block: 36px;
}

.hero h1 {
  margin: 24px 0 28px;
  font-family: var(--serif);
  font-size: clamp(45px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.035em;
}

.hero h1 .accent {
  position: relative;
  display: inline-block;
  color: var(--deep);
  z-index: 0;
}

.hero h1 .accent::after {
  position: absolute;
  right: -3px;
  bottom: 7px;
  left: -3px;
  z-index: -1;
  height: 12px;
  border-radius: 999px;
  background: var(--coral-soft);
  content: "";
}

.hero__lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: relative;
  min-width: 0;
  padding: 0 26px 30px 0;
}

.hero__photo {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 120px var(--radius-lg);
  box-shadow: var(--shadow);
  background: #dbeff0;
}

.hero__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 63, 75, 0.24));
  content: "";
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 8px solid var(--paper-blue);
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  text-align: center;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.13em;
  transform: rotate(6deg);
}

.hero__stamp strong {
  display: block;
  font-size: 30px;
  letter-spacing: 0.03em;
}

.hero__note {
  position: absolute;
  bottom: 52px;
  left: -36px;
  z-index: 2;
  max-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(216, 228, 227, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 45px rgba(7, 63, 75, 0.13);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.7;
}

.hero__note b {
  display: block;
  margin-bottom: 2px;
  color: var(--deep);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-quick {
  position: relative;
  z-index: 3;
  margin-top: -32px;
}

.hero-quick__inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(7, 63, 75, 0.09);
}

.hero-quick__label,
.hero-quick a {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px;
}

.hero-quick__label {
  color: #fff;
  background: var(--deep);
}

.hero-quick__label small {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-quick__label strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.hero-quick a {
  position: relative;
  border-right: 1px solid var(--line);
  transition: color 0.25s ease, background 0.25s ease;
}

.hero-quick a:last-child {
  border-right: 0;
}

.hero-quick a::after {
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: var(--coral);
  content: "↗";
}

.hero-quick a:hover {
  color: var(--deep);
  background: var(--paper-blue);
}

.hero-quick a small {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-quick a strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}

/* Job cards */
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.job-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 170px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(7, 63, 75, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.job-card:hover {
  transform: translateY(-6px);
  border-color: var(--aqua-light);
  box-shadow: var(--shadow);
}

.job-card__body {
  position: relative;
  z-index: 1;
  padding: 34px 20px 30px 30px;
}

.job-card__number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--deep);
  background: var(--aqua-light);
  font-family: var(--display);
  font-weight: 600;
}

.job-card:nth-child(3) .job-card__number,
.job-card:nth-child(4) .job-card__number {
  background: var(--coral-soft);
}

.job-card h3 {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 500;
}

.job-card__en {
  display: block;
  margin-bottom: 18px;
  color: var(--deep);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.job-card p {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.8;
}

.job-card__image {
  height: 100%;
  min-height: 330px;
  overflow: hidden;
  background: var(--paper-blue);
}

.job-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.job-card:hover .job-card__image img {
  transform: scale(1.04);
  filter: saturate(1);
}

/* Values */
.value-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.value-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(7, 63, 75, 0.06);
}

.value-card--wide {
  grid-column: span 7;
}

.value-card--tall {
  grid-column: span 5;
}

.value-card--half {
  grid-column: span 6;
}

.value-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.value-card--tall .value-card__image {
  aspect-ratio: 5 / 4;
}

.value-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-card__content {
  padding: 28px 30px 32px;
}

.value-card__number {
  color: var(--coral);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.value-card h3 {
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 29px);
  font-weight: 500;
}

.value-card p {
  margin-bottom: 0;
  font-size: 15px;
}

/* Work style */
.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.work-panel {
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--deep-2);
}

.work-panel h3 {
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(25px, 3.2vw, 36px);
  font-weight: 500;
}

.work-panel > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
}

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

.benefit {
  min-height: 124px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.benefit strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.benefit span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.work-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce9e9;
}

.work-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.work-photo__caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  font-size: 14px;
}

.work-note {
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

/* Message */
.message-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.message-portrait {
  position: relative;
}

.message-portrait__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 140px 140px var(--radius) var(--radius);
  background: var(--paper-blue);
}

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

.message-portrait__name {
  width: calc(100% - 30px);
  margin: -28px auto 0;
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(7, 63, 75, 0.1);
  text-align: center;
}

.message-portrait__name small {
  display: block;
  color: var(--deep);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.message-portrait__name strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.message-copy h2 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
}

.message-copy p {
  margin-bottom: 18px;
}

.message-copy p:last-child {
  margin-bottom: 0;
}

/* Gallery */
.gallery-track {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 170px;
  gap: 16px;
}

.gallery-track figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #e4eeee;
}

.gallery-track figure:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-track figure:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-track figure:nth-child(3),
.gallery-track figure:nth-child(4) {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-track figure:hover img {
  transform: scale(1.035);
}

/* Flow */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  position: relative;
  min-height: 230px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 2;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  content: "→";
  font-size: 13px;
  transform: translateY(-50%);
}

.flow-step__number {
  color: var(--coral);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.flow-step h3 {
  margin: 15px 0 10px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}

.flow-step p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Contact & access */
.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--deep-2);
}

.contact-card::before {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(189, 236, 239, 0.26);
  border-radius: 50%;
  content: "";
}

.contact-card__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.contact-card .section-kicker,
.contact-card h2,
.contact-card p {
  color: #fff;
}

.contact-card h2 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 500;
}

.contact-card p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.contact-card__sub a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.access-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.access-info {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.access-info h3 {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.access-info dl {
  margin-bottom: 0;
}

.access-info dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

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

.access-info dt {
  color: var(--deep);
  font-weight: 700;
}

.access-info dd {
  margin: 0;
  color: var(--ink-soft);
}

.access-map {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-blue);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
}

/* Footer */
.site-footer {
  padding: 42px 0 calc(42px + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.7);
  background: #0a2e36;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}

.site-footer__brand img {
  width: 210px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-footer__brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  font-size: 13px;
}

.site-footer__nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.mobile-sticky {
  display: none;
}

/* Job detail */
body[class*="role-"] {
  --role: var(--deep);
  --role-soft: var(--aqua-light);
}

body.role-hygienist {
  --role: #087f93;
  --role-soft: #c8eef1;
}

body.role-assistant {
  --role: #b85c48;
  --role-soft: #f8d8cf;
}

body.role-technician {
  --role: #86652f;
  --role-soft: #eee2c7;
}

.job-hero {
  padding: calc(var(--header-h) + 48px) 0 80px;
  background:
    radial-gradient(circle at 88% 5%, var(--role-soft), transparent 35%),
    linear-gradient(140deg, #faf9f4, #eef7f8);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 13px;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.job-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.role-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--role);
  background: var(--role-soft);
  font-size: 13px;
  font-weight: 700;
}

.role-chip::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.job-hero h1 {
  margin: 22px 0 24px;
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.35;
}

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

.job-hero__lead {
  max-width: 580px;
  margin-bottom: 28px;
  font-size: 17px;
}

.job-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.job-hero__visual {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 100px var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--role-soft);
}

.job-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-summary {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.job-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.job-summary__item {
  min-height: 114px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.job-summary__item:last-child {
  border-right: 0;
}

.job-summary__item small {
  display: block;
  margin-bottom: 6px;
  color: var(--role);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.job-summary__item strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.role-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.role-intro__title {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.role-intro__title h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
}

.role-intro__copy p {
  font-size: 16px;
  line-height: 2;
}

.role-intro__copy p:last-child {
  margin-bottom: 0;
}

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

.role-point {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.role-point__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.role-point__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role-point__body {
  padding: 24px 24px 28px;
}

.role-point__number {
  color: var(--role);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.role-point h3 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.role-point p {
  margin-bottom: 0;
  font-size: 14px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin-inline: auto;
}

.fit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.fit-item::before {
  width: 26px;
  height: 26px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--role);
  content: "✓";
  font-size: 13px;
}

.fit-item strong {
  font-size: 15px;
}

.requirements {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.requirements__intro h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
}

.requirements__list {
  margin: 0;
  overflow: hidden;
  border-top: 2px solid var(--role);
  background: #fff;
}

.requirements__list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 19px 20px;
  border-bottom: 1px solid var(--line);
}

.requirements__list dt {
  color: var(--role);
  font-weight: 700;
}

.requirements__list dd {
  margin: 0;
  color: var(--ink-soft);
}

.requirements-note {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 12px;
}

.other-jobs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.other-jobs a {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-family: var(--serif);
  font-weight: 500;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.other-jobs a::after {
  color: var(--coral);
  content: "→";
}

.other-jobs a[aria-current="page"] {
  color: #fff;
  border-color: var(--role);
  background: var(--role);
}

.other-jobs a[aria-current="page"]::after {
  color: rgba(255, 255, 255, 0.86);
}

/* 404 */
.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  text-align: center;
  background: linear-gradient(140deg, var(--paper), var(--paper-blue));
}

.not-found__inner {
  max-width: 620px;
}

.not-found__code {
  color: var(--aqua);
  font-family: var(--display);
  font-size: clamp(90px, 24vw, 180px);
  line-height: 0.8;
}

.not-found h1 {
  margin: 30px 0 14px;
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 500;
}

.not-found p {
  margin-bottom: 28px;
}

/* Progressive reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --header-h: 74px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .site-logo img {
    width: 190px;
  }

  .hero__inner,
  .job-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 48px;
  }

  .job-card {
    grid-template-columns: 1fr 145px;
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 34px);
  }

  .hero__inner,
  .job-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    gap: 36px;
  }

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

  .hero__note {
    left: -18px;
  }

  .hero-quick__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-quick__label {
    grid-column: 1 / -1;
    min-height: 62px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .job-grid {
    gap: 16px;
  }

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

  .job-card__image {
    min-height: 190px;
    order: -1;
  }

  .job-card__body {
    padding: 26px;
  }

  .job-card__number {
    margin-bottom: 16px;
  }

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

  .work-photo img {
    min-height: 390px;
  }

  .message-grid {
    grid-template-columns: 270px 1fr;
    gap: 46px;
  }

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

  .flow-step:nth-child(2)::after {
    display: none;
  }

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

  .role-point:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .role-point:last-child .role-point__image {
    aspect-ratio: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 68px;
    --radius: 20px;
    --radius-lg: 28px;
  }

  body {
    font-size: 16px;
    line-height: 1.8;
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .container,
  .container--narrow {
    width: min(calc(100% - 36px), var(--content));
  }

  .section {
    padding-block: 72px;
  }

  .section--tight {
    padding-block: 58px;
  }

  .site-header__inner {
    width: calc(100% - 28px);
  }

  .site-logo img {
    width: 164px;
  }

  .mobile-nav {
    inset: calc(var(--header-h) + env(safe-area-inset-top)) 0 0;
  }

  .hero {
    padding: calc(var(--header-h) + 24px) 0 58px;
  }

  .hero__inner,
  .job-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__copy {
    padding-block: 14px 0;
  }

  .hero h1 {
    margin: 18px 0 20px;
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero h1 .accent::after {
    bottom: 4px;
    height: 9px;
  }

  .hero__lead {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.9;
  }

  .hero__actions .button {
    flex: 1 1 100%;
  }

  .hero__visual {
    padding: 0 18px 24px 0;
  }

  .hero__photo {
    aspect-ratio: 4 / 3;
    border-radius: 24px 24px 70px 24px;
  }

  .hero__photo img {
    object-position: center 36%;
  }

  .hero__stamp {
    width: 98px;
    height: 98px;
    border-width: 6px;
    font-size: 11px;
  }

  .hero__stamp strong {
    font-size: 23px;
  }

  .hero__note {
    bottom: 36px;
    left: -2px;
    max-width: 170px;
    padding: 12px 14px;
    font-size: 12px;
  }

  .hero-quick {
    margin-top: -18px;
  }

  .hero-quick__inner {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
  }

  .hero-quick__label {
    min-height: 58px;
    padding: 12px 16px;
  }

  .hero-quick a {
    min-height: 80px;
    padding: 13px 15px;
    border-bottom: 1px solid var(--line);
  }

  .hero-quick a:nth-of-type(2) {
    border-right: 0;
  }

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

  .job-card {
    min-height: auto;
    grid-template-columns: 1fr 126px;
  }

  .job-card__image {
    min-height: 100%;
    order: initial;
  }

  .job-card__body {
    padding: 22px 10px 22px 22px;
  }

  .job-card__number {
    width: 36px;
    height: 36px;
    margin-bottom: 13px;
  }

  .job-card h3 {
    font-size: 22px;
  }

  .job-card__en {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .job-card p {
    display: none;
  }

  .job-card .text-link {
    font-size: 13px;
  }

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

  .value-card--wide,
  .value-card--tall,
  .value-card--half {
    grid-column: auto;
  }

  .value-card__content {
    padding: 24px 22px 27px;
  }

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

  .benefit {
    min-height: auto;
  }

  .work-photo img {
    min-height: 330px;
  }

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

  .message-portrait {
    width: min(78%, 310px);
    margin-inline: auto;
  }

  .gallery-track {
    width: calc(100% + 36px);
    margin-inline: -18px;
    padding-inline: 18px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .gallery-track figure,
  .gallery-track figure:nth-child(n) {
    flex: 0 0 82%;
    height: auto;
    aspect-ratio: 4 / 3;
    scroll-snap-align: center;
  }

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

  .flow-step {
    min-height: auto;
    padding: 24px;
  }

  .flow-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -13px;
    transform: translateX(50%) rotate(90deg);
  }

  .contact-card__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .contact-card__actions .button {
    width: 100%;
  }

  .contact-card__sub {
    flex-direction: column;
    gap: 4px;
  }

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

  .access-map,
  .access-map iframe {
    min-height: 390px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .site-footer {
    padding: 30px 0 26px;
  }

  .site-footer__brand img {
    width: 156px;
  }

  .site-footer__brand p {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.6;
  }

  .site-footer__nav {
    justify-content: flex-start;
    gap: 2px 18px;
  }

  .mobile-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 8px;
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 30px rgba(7, 63, 75, 0.09);
    backdrop-filter: blur(15px);
  }

  .mobile-sticky a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-sticky a:first-child {
    color: var(--deep);
    border: 1px solid var(--line);
    background: var(--paper-blue);
  }

  .mobile-sticky a:last-child {
    color: #fff;
    background: var(--coral);
  }

  .job-hero {
    padding: calc(var(--header-h) + 26px) 0 60px;
  }

  .breadcrumb {
    margin-bottom: 20px;
  }

  .job-hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 11vw, 54px);
  }

  .job-hero__lead {
    font-size: 15px;
  }

  .job-hero__actions .button {
    width: 100%;
  }

  .job-hero__visual {
    aspect-ratio: 4 / 3;
    border-radius: 24px 24px 72px 24px;
  }

  .job-summary {
    margin-top: -22px;
  }

  .job-summary__grid {
    grid-template-columns: 1fr;
  }

  .job-summary__item {
    min-height: auto;
    padding: 17px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .job-summary__item:last-child {
    border-bottom: 0;
  }

  .role-intro,
  .requirements {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .role-intro__title {
    position: static;
  }

  .role-point-grid {
    grid-template-columns: 1fr;
  }

  .role-point:last-child {
    grid-column: auto;
    display: block;
  }

  .role-point:last-child .role-point__image {
    aspect-ratio: 4 / 3;
  }

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

  .requirements__list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

@media (max-width: 420px) {
  .container,
  .container--narrow {
    width: min(calc(100% - 30px), var(--content));
  }

  .hero-quick a {
    padding-inline: 12px;
  }

  .job-card {
    grid-template-columns: 1fr 104px;
  }

  .job-card__body {
    padding-left: 18px;
  }

  .other-jobs {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .mobile-nav {
    padding-top: 12px;
  }

  .mobile-nav__links a {
    min-height: 52px;
  }

  .mobile-nav__entry {
    margin-top: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
