:root {
  --np-bg: #f7f2e8;
  --np-bg-soft: #ece4d6;
  --np-text: #181613;
  --np-heading: #11100e;
  --np-coral: #9e5e4f;
  --np-coral-cta: #151513;
  --np-teal: #52685f;
  --np-teal-dark: #293b36;
  --np-line: rgba(24, 22, 19, .16);
  --np-white: #fffdf8;
  --np-font-sans: "Noto Sans", "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  --np-font-serif: "Noto Serif", "Noto Serif JP", Georgia, serif;
  --np-font-hawaiian: "Noto Serif", Georgia, "Times New Roman", serif;
  --np-container: 1120px;
  --np-readable: 760px;
  --np-radius: 6px;
  --np-shadow: 0 14px 36px rgba(31, 26, 20, .06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .72), rgba(247, 242, 232, 0) 520px),
    var(--np-bg);
  color: var(--np-text);
  font-family: var(--np-font-sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::after {
  content: "";
  display: none;
  height: 78px;
}

:target {
  scroll-margin-top: 132px;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--np-teal-dark);
  outline-offset: 3px;
}

.np-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--np-text);
  color: var(--np-white);
  padding: 10px 14px;
  border-radius: var(--np-radius);
}

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

.np-container {
  width: min(100% - 40px, var(--np-container));
  margin-inline: auto;
}

.np-hero__inner > *,
.np-culture-scene__inner > *,
.np-split > *,
.np-instructor > *,
.np-keiki > *,
.np-access > *,
.np-final-cta__inner > *,
.np-diagnosis > *,
.np-class-overview > * {
  min-width: 0;
}

.np-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 232, .94);
  border-bottom: 1px solid rgba(23, 23, 23, .12);
  backdrop-filter: blur(14px);
}

.np-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.np-logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--np-heading);
  text-decoration: none;
}

.np-logo__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, .18);
  border-radius: 999px;
  background: rgba(255, 253, 248, .88);
}

.np-logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.np-logo__copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.np-logo__copy strong {
  display: block;
  color: #151513;
  font-family: var(--np-font-hawaiian);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.12;
  white-space: nowrap;
}

.np-logo__copy span {
  color: rgba(62, 57, 50, .72);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.np-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.np-nav a {
  text-decoration: none;
}

.np-nav a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.np-header__cta {
  min-height: 40px;
  padding-inline: 16px;
}

.np-menu-button {
  position: relative;
  width: 52px;
  height: 52px;
  display: none;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 253, 248, .28);
  border-radius: 14px;
  background: #151513;
  color: var(--np-white);
  box-shadow: 0 12px 24px rgba(24, 22, 19, .18);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.np-menu-button:hover {
  transform: translateY(-1px);
  background: #2a2824;
  box-shadow: 0 16px 28px rgba(24, 22, 19, .22);
}

.np-menu-button span:not(.np-menu-button__text) {
  width: 23px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.np-menu-button::after {
  content: "MENU";
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  color: #6c5f55;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

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

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

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

.np-menu-button__text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.np-mobile-menu {
  display: none;
}

.np-hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(56px, 7vw, 92px);
  overflow: hidden;
  border-bottom: 1px solid var(--np-line);
  background:
    linear-gradient(100deg, rgba(255, 253, 248, .98) 0%, rgba(247, 242, 232, .95) 54%, rgba(247, 242, 232, .72) 100%),
    var(--np-bg);
}

.np-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.np-hero__shade {
  position: absolute;
}

.np-hero__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 22, 19, .16);
  border-radius: var(--np-radius);
  background: #e7ded0;
  box-shadow: 0 18px 54px rgba(31, 26, 20, .10);
}

.np-hero__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 44%;
  filter: grayscale(.08) contrast(.98);
}

.np-hero__shade {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(236, 228, 214, .54)),
    linear-gradient(90deg, rgba(255, 253, 248, .92) 0%, rgba(247, 242, 232, .78) 50%, rgba(247, 242, 232, .18) 100%);
}

.np-hero__content {
  position: relative;
  max-width: 560px;
}

.np-eyebrow {
  margin: 0 0 10px;
  color: #8d6630;
  font-size: 13px;
  font-weight: 700;
}

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

h1,
h2 {
  margin: 0;
  color: var(--np-heading);
  font-family: var(--np-font-serif);
  line-height: 1.35;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
  word-break: normal;
}

.np-hawaiian {
  font-family: var(--np-font-hawaiian);
  font-weight: 700;
  font-synthesis: none;
  font-kerning: normal;
  text-rendering: geometricPrecision;
  overflow-wrap: normal;
  word-break: keep-all;
}

.np-hawaiian-word,
[lang="haw"] {
  font-family: var(--np-font-hawaiian);
  font-weight: inherit;
  font-synthesis: none;
  font-kerning: normal;
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: keep-all;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 31px;
}

h3 {
  margin: 0;
  color: var(--np-text);
  font-size: 20px;
  line-height: 1.45;
}

.np-hero__lead,
.np-lead {
  font-size: 18px;
  line-height: 1.9;
}

.np-hero__lead {
  max-width: 620px;
  margin: 20px 0 0;
}

.np-page-hero {
  padding-block: 78px 70px;
  border-bottom: 1px solid var(--np-line);
  background:
    radial-gradient(circle at 85% 8%, rgba(158, 94, 79, .12), transparent 32%),
    linear-gradient(90deg, rgba(255, 253, 248, .96), rgba(247, 242, 232, .84)),
    var(--np-bg);
  color: var(--np-text);
}

.np-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 52px;
  align-items: center;
}

.np-page-hero h1,
.np-page-hero .np-eyebrow {
  color: var(--np-heading);
}

.np-page-hero .np-eyebrow {
  color: #8d6630;
}

.np-page-hero__lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(24, 22, 19, .78);
  font-size: 18px;
}

.np-page-hero__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 22, 19, .13);
  border-radius: var(--np-radius);
  background: #fffdf8;
  box-shadow: 0 22px 52px rgba(31, 26, 20, .12);
}

.np-page-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.np-page-hero--studio {
  background:
    radial-gradient(circle at 85% 10%, rgba(158, 94, 79, .12), transparent 34%),
    linear-gradient(90deg, rgba(255, 253, 248, .98), rgba(247, 242, 232, .9));
}

.np-page-hero--studio .np-page-hero__media img {
  aspect-ratio: 16 / 9;
  object-position: center center;
}

.np-page-hero--about {
  background:
    radial-gradient(circle at 82% 12%, rgba(48, 91, 78, .12), transparent 34%),
    linear-gradient(90deg, rgba(255, 253, 248, .98), rgba(247, 242, 232, .9));
}

.np-page-hero--about .np-page-hero__media img {
  aspect-ratio: 16 / 9;
  object-position: center center;
}

.np-page-hero--classes {
  background:
    radial-gradient(circle at 80% 8%, rgba(48, 91, 78, .10), transparent 35%),
    linear-gradient(90deg, rgba(255, 253, 248, .98), rgba(236, 228, 214, .88));
}

.np-page-hero--classes .np-page-hero__media img {
  aspect-ratio: 16 / 9;
  object-position: center center;
}

.np-page-hero--contact {
  background:
    radial-gradient(circle at 84% 12%, rgba(158, 94, 79, .10), transparent 34%),
    linear-gradient(90deg, rgba(255, 253, 248, .98), rgba(247, 242, 232, .9));
}

.np-page-hero--contact .np-page-hero__media img {
  aspect-ratio: 16 / 9;
  object-position: center center;
}

.np-page-nav {
  position: sticky;
  top: 72px;
  z-index: 14;
  border-bottom: 1px solid rgba(23, 23, 23, .12);
  background: rgba(247, 242, 232, .95);
  backdrop-filter: blur(12px);
}

.np-page-nav__inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-block: 10px;
  scrollbar-width: none;
}

.np-page-nav__inner::-webkit-scrollbar {
  display: none;
}

.np-page-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(23, 23, 23, .13);
  border-radius: 999px;
  background: rgba(255, 253, 248, .74);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.np-page-nav a:hover {
  border-color: var(--np-text);
}

.np-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.np-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--np-radius);
  font-weight: 700;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

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

.np-btn--primary {
  background: var(--np-coral-cta);
  color: var(--np-white);
}

.np-btn--primary:hover {
  background: #333;
}

.np-btn--secondary {
  background: var(--np-white);
  border-color: var(--np-heading);
  color: var(--np-heading);
}

.np-btn--secondary:hover {
  background: #eee7da;
}

.np-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.np-badges li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 23, 23, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  color: var(--np-heading);
  font-size: 13px;
  font-weight: 700;
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.np-badges li::before {
  content: "#";
  color: #9b7338;
  font-weight: 800;
}

.np-culture-scene {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 112px);
  background: #141311;
  color: rgba(255, 253, 248, .82);
}

.np-culture-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 19, 17, .98), rgba(20, 19, 17, .82) 54%, rgba(20, 19, 17, .54)),
    radial-gradient(circle at 84% 18%, rgba(141, 102, 48, .24), transparent 34%);
  pointer-events: none;
}

.np-culture-scene__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.np-culture-scene h2 {
  max-width: 680px;
  color: var(--np-white);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.45;
}

.np-culture-scene p:not(.np-eyebrow) {
  max-width: 680px;
  margin-top: 18px;
}

.np-culture-highlight {
  position: relative;
  max-width: 680px;
  margin-top: 30px;
  padding: 22px 24px 24px 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, .18);
  border-left: 3px solid #d0a76a;
  border-radius: var(--np-radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .10), rgba(208, 167, 106, .08));
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, .12);
}

.np-culture-highlight::before {
  content: "";
  position: absolute;
  top: 21px;
  right: 22px;
  width: 58px;
  height: 1px;
  background: #d0a76a;
  opacity: .7;
}

.np-culture-highlight p:not(.np-eyebrow),
.np-culture-highlight p {
  max-width: none;
  margin: 0;
}

.np-culture-highlight p + p {
  margin-top: 10px;
}

.np-culture-highlight__kicker {
  color: #d0a76a;
  font-size: 13px;
  font-weight: 700;
}

.np-culture-highlight strong {
  display: block;
  color: var(--np-white);
  font-family: var(--np-font-serif);
  font-size: 21px;
  line-height: 1.55;
}

.np-culture-scene .np-eyebrow {
  color: #d0a76a;
}

.np-culture-scene__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, .18);
  border-radius: var(--np-radius);
  background: #28241f;
}

.np-culture-scene__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(.12) contrast(.94) brightness(.9);
}

.np-section {
  padding-block: 88px;
}

.np-section--soft {
  background: linear-gradient(180deg, var(--np-bg-soft), rgba(236, 228, 214, .42));
}

.np-section--cream {
  background: #fff9ef;
}

.np-section__head {
  max-width: var(--np-readable);
  margin-bottom: 34px;
}

.np-section__head p:not(.np-eyebrow) {
  margin: 14px 0 0;
}

.np-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .42fr);
  gap: 44px;
  align-items: start;
}

.np-trial-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.np-trial-detail .np-prose {
  max-width: 900px;
}

.np-trial-detail__image {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, .14);
  border-radius: var(--np-radius);
  background: #f5efe4;
}

.np-trial-detail__image img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.np-instructor-feature {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.np-instructor-feature__portrait {
  display: grid;
  justify-items: center;
}

.np-instructor-feature__body {
  max-width: none;
}

.np-logo-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr);
  gap: 48px;
  align-items: center;
}

.np-logo-story__mark {
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(23, 23, 23, .14);
  border-radius: var(--np-radius);
  background:
    radial-gradient(circle at 50% 48%, rgba(208, 167, 106, .16), transparent 58%),
    rgba(255, 253, 248, .82);
}

.np-logo-story__mark img {
  width: min(220px, 58vw);
  aspect-ratio: 1;
  object-fit: contain;
}

.np-lineage-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.np-lineage-points article {
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, .13);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .78);
}

.np-lineage-points span,
.np-author-learning .np-culture-highlight__kicker {
  display: block;
  margin-bottom: 8px;
  color: #8a5b1d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.np-lineage-points strong {
  display: block;
  color: var(--np-heading);
  font-size: 17px;
  line-height: 1.5;
}

.np-lineage-points p {
  margin: 8px 0 0;
  color: rgba(62, 57, 50, .78);
  font-size: 14px;
  line-height: 1.75;
}

.np-style-panel {
  display: grid;
  gap: 16px;
}

.np-style-panel figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, .14);
  border-radius: var(--np-radius);
  background: #e7ded0;
}

.np-style-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.np-author-learning {
  padding: 22px;
  background: rgba(255, 253, 248, .86);
}

.np-author-learning h3 {
  margin-bottom: 10px;
}

.np-author-learning p {
  margin: 0;
}

.np-prose {
  max-width: 780px;
}

.np-prose h2 + p,
.np-prose h3 + p {
  margin-top: 12px;
}

.np-prose h3 {
  margin-top: 30px;
}

.np-prose p {
  margin: 16px 0 0;
}

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

.np-content-grid > .np-section-grid {
  grid-template-columns: 1fr;
}

.np-works-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}

.np-profile-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.np-profile-points div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(23, 23, 23, .14);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .62);
  color: var(--np-heading);
  font-weight: 700;
}

.np-profile-points span {
  display: block;
  margin-bottom: 8px;
  color: #7c6f63;
  font-family: var(--np-font-sans);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.np-image-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}

.np-image-band > .np-image-tile--featured {
  grid-area: auto;
  min-height: 430px;
}

.np-image-band__stack {
  display: grid;
  gap: 18px;
  grid-template-rows: minmax(220px, 1fr) auto;
}

.np-image-band__stack .np-image-tile {
  min-height: 220px;
}

.np-about-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  grid-template-areas:
    "featured group"
    "featured studio";
  gap: 18px;
  align-items: stretch;
}

.np-image-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--np-radius);
  background: #e7ded0;
  box-shadow: none;
}

.np-image-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(.1) contrast(.96);
}

.np-image-tile--featured {
  grid-area: featured;
  min-height: 520px;
}

.np-image-tile--tall {
  min-height: 540px;
}

.np-page-card {
  padding: 22px;
}

.np-page-card p:last-child {
  margin-bottom: 0;
}

.np-belongings-grid {
  align-items: stretch;
}

.np-belongings-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.np-belongings-card__image {
  margin: 0;
  overflow: hidden;
  background: #f5efe4;
}

.np-belongings-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(.08) contrast(.98);
}

.np-belongings-card__image--wear img {
  object-position: center center;
}

.np-belongings-card__image--bring img {
  object-position: center center;
}

.np-belongings-card__image--pau img {
  object-position: center center;
}

.np-belongings-card__body {
  padding: 22px;
}

.np-card__label.np-hawaiian-word {
  font-family: var(--np-font-hawaiian);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.np-callout {
  padding: 26px;
  border: 1px solid rgba(23, 23, 23, .14);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .82);
  box-shadow: none;
}

.np-trial-summary {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, .92), rgba(255, 249, 239, .76)),
    var(--np-white);
}

.np-trial-summary h3 {
  margin-bottom: 16px;
}

.np-trial-summary__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.np-trial-summary__list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.np-trial-summary__list li {
  padding: 15px 16px;
  border: 1px solid rgba(23, 23, 23, .11);
  border-radius: 8px;
  background: rgba(255, 253, 248, .82);
}

.np-trial-summary__list span {
  display: block;
  margin-bottom: 6px;
  color: #8a5b1d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.np-trial-summary__list strong {
  display: block;
  color: var(--np-heading);
  font-size: 17px;
  line-height: 1.55;
}

.np-trial-summary__list small {
  display: block;
  margin-top: 4px;
  color: rgba(62, 57, 50, .74);
  font-size: 13px;
  line-height: 1.6;
}

.np-callout--dark {
  background: #111;
  color: var(--np-white);
}

.np-callout--dark h2,
.np-callout--dark h3,
.np-callout--dark .np-eyebrow {
  color: var(--np-white);
}

.np-side-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.np-check-list,
.np-link-list,
.np-definition-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.np-check-list li,
.np-link-list a,
.np-definition-list div {
  padding: 14px;
  border: 1px solid var(--np-line);
  border-radius: var(--np-radius);
  background: var(--np-white);
}

.np-link-list a {
  display: block;
  font-weight: 700;
  text-decoration: none;
}

.np-link-list a:hover {
  border-color: var(--np-text);
}

.np-definition-list dt {
  color: #6c5f55;
  font-size: 13px;
  font-weight: 700;
}

.np-definition-list dd {
  margin: 2px 0 0;
}

.np-mini-note {
  margin-top: 12px;
  color: #6c5f55;
  font-size: 13px;
}

.np-timeline {
  display: grid;
  gap: 28px;
}

.np-timeline__year {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.np-timeline__year h2 {
  position: sticky;
  top: 128px;
  font-size: 25px;
}

.np-timeline__items {
  display: grid;
  gap: 14px;
}

.np-timeline-item {
  padding: 20px;
}

.np-timeline-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.np-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #ebe8df;
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.np-pill--outline {
  border: 1px solid rgba(23, 23, 23, .18);
  background: transparent;
}

.np-reference-list {
  padding-left: 1.2em;
  margin-bottom: 0;
  color: #5d5149;
  font-size: 14px;
}

.np-fit-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 34px;
}

.np-fit-intro .np-section__head {
  margin-bottom: 0;
}

.np-fit-illustration {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, .14);
  border-radius: var(--np-radius);
  background: #f5efe4;
  box-shadow: none;
}

.np-fit-illustration img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  filter: grayscale(.08) contrast(.98);
}

.np-note {
  max-width: var(--np-readable);
  margin: 0 0 20px;
  color: #6c5f55;
  font-size: 14px;
}

.np-class-grid,
.np-point-grid,
.np-fit-grid,
.np-news-grid,
.np-history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.np-card {
  border: 1px solid var(--np-line);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .82);
  box-shadow: none;
}

.np-class-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: 42px;
  align-items: start;
}

.np-class-grid--detail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.np-fee-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, .14);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .88);
}

.np-fee-panel__head {
  padding: clamp(22px, 3vw, 30px);
  border-bottom: 1px solid rgba(23, 23, 23, .10);
  background:
    linear-gradient(120deg, rgba(208, 167, 106, .16), rgba(255, 253, 248, 0) 50%),
    rgba(255, 253, 248, .78);
}

.np-fee-panel__head h3 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 31px);
}

.np-fee-panel__head p:not(.np-card__label) {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(62, 57, 50, .78);
}

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

.np-fee-item {
  min-height: 100%;
  padding: 22px;
  border-right: 1px solid rgba(23, 23, 23, .10);
  border-bottom: 1px solid rgba(23, 23, 23, .10);
  background: rgba(255, 253, 248, .64);
}

.np-fee-item:nth-child(3n) {
  border-right: 0;
}

.np-fee-item span {
  display: block;
  margin-bottom: 9px;
  color: #8a5b1d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.np-fee-item strong {
  display: block;
  color: var(--np-heading);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
}

.np-fee-item p {
  margin: 10px 0 0;
  color: rgba(62, 57, 50, .78);
  font-size: 14px;
  line-height: 1.8;
}

.np-fee-item--benefit {
  background:
    linear-gradient(135deg, rgba(48, 91, 78, .08), rgba(208, 167, 106, .08)),
    rgba(255, 253, 248, .76);
}

.np-fee-item--trial {
  background: #151513;
}

.np-fee-item--trial span {
  color: #d0a76a;
}

.np-fee-item--trial strong {
  color: var(--np-white);
}

.np-fee-item--trial p {
  color: rgba(255, 253, 248, .74);
}

.np-class-card {
  min-height: 100%;
  margin: 0;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.np-class-card h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.35;
}

.np-card__label {
  margin: 0 0 7px;
  color: var(--np-teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.np-class-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.np-info-list div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
}

.np-class-card dl div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid rgba(23, 23, 23, .09);
}

.np-class-card dl div:last-child {
  grid-template-columns: 1fr;
  gap: 4px;
  padding-bottom: 0;
}

.np-class-card dt,
.np-info-list dt {
  color: #6c5f55;
  font-size: 13px;
  font-weight: 700;
}

.np-class-card dt {
  color: #8a5b1d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.6;
}

.np-class-card dd,
.np-info-list dd {
  margin: 0;
}

.np-class-card dd {
  color: rgba(24, 22, 19, .88);
  font-size: 15px;
  line-height: 1.7;
}

.np-price-main,
.np-price-note {
  display: block;
}

.np-price-main {
  color: var(--np-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.np-price-note {
  margin-top: 4px;
  color: rgba(62, 57, 50, .72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.np-class-card__button {
  width: 100%;
  margin-top: auto;
  padding-inline: 14px;
  font-size: 14px;
}

.np-class-detail-card {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .94), rgba(255, 253, 248, .76)),
    var(--np-white);
}

.np-class-detail-card__note {
  margin: -2px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 23, .10);
  border-radius: var(--np-radius);
  background: rgba(236, 228, 214, .52);
  color: rgba(62, 57, 50, .84);
  font-size: 14px;
  line-height: 1.75;
}

.np-fee-panel--class .np-fee-panel__head h2 {
  font-size: clamp(25px, 2.6vw, 34px);
}

.np-policy-grid .np-page-card {
  min-height: 100%;
  background: rgba(255, 253, 248, .78);
}

.np-policy-grid h3 {
  margin-bottom: 10px;
}

.np-contact-hub {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 20px;
  align-items: stretch;
}

.np-contact-route {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 32px);
}

.np-contact-route h2 {
  font-size: clamp(25px, 2.5vw, 34px);
}

.np-contact-route--primary {
  background:
    linear-gradient(135deg, rgba(208, 167, 106, .16), rgba(255, 253, 248, .82) 46%),
    var(--np-white);
}

.np-contact-route .np-btn {
  justify-self: start;
}

.np-contact-mail {
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, .12);
  border-radius: var(--np-radius);
  background: rgba(236, 228, 214, .52);
}

.np-contact-mail span {
  display: block;
  margin-bottom: 6px;
  color: #8a5b1d;
  font-size: 12px;
  font-weight: 900;
}

.np-contact-mail a {
  color: var(--np-heading);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

.np-class-keiki {
  align-items: center;
}

.np-class-keiki .np-photo img {
  aspect-ratio: 16 / 11;
  object-position: center 42%;
}

.np-status {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  align-self: start;
  padding: 2px 8px;
  border: 1px solid rgba(23, 23, 23, .18);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.np-status--open {
  background: rgba(255, 253, 248, .82);
  color: var(--np-teal-dark);
}

.np-status--consult {
  background: rgba(255, 253, 248, .68);
  color: #3f3a35;
}

.np-text-link {
  color: var(--np-heading);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.np-split,
.np-instructor,
.np-access,
.np-faq-layout,
.np-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

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

.np-point {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--np-line);
  border-radius: var(--np-radius);
  background: var(--np-white);
  color: var(--np-heading);
  font-weight: 700;
}

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

.np-diagnosis,
.np-keiki {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 28px;
  align-items: start;
}

.np-diagnosis--wizard {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 14px;
}

.np-diagnosis__questions,
.np-diagnosis__wizard,
.np-diagnosis__result,
.np-keiki__panel,
.np-event-policy {
  border: 1px solid rgba(23, 23, 23, .14);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .84);
  box-shadow: none;
}

.np-diagnosis__questions,
.np-diagnosis__wizard {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.np-diagnosis fieldset {
  display: grid;
  gap: 8px;
  padding: 0 0 16px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--np-line);
}

.np-diagnosis fieldset:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.np-diagnosis legend {
  margin-bottom: 4px;
  color: var(--np-heading);
  font-weight: 700;
}

.np-diagnosis label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--np-line);
  border-radius: var(--np-radius);
  background: var(--np-white);
  cursor: pointer;
}

.np-diagnosis input {
  accent-color: var(--np-text);
}

.np-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7e2da;
}

.np-progress span {
  width: 33%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--np-text);
  transition: width .25s ease;
}

.np-progress__text {
  margin: -6px 0 4px;
  color: #5d5149;
  font-size: 13px;
  font-weight: 700;
}

.np-diagnosis__step {
  display: grid;
  gap: 14px;
}

.np-diagnosis__step[hidden],
.np-diagnosis__result[hidden] {
  display: none;
}

.np-choice-list {
  display: grid;
  gap: 10px;
}

.np-choice-list button {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--np-line);
  border-radius: var(--np-radius);
  background: var(--np-white);
  color: var(--np-text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.np-choice-list button:hover,
.np-choice-list button:focus-visible {
  border-color: var(--np-text);
  background: #f2eadc;
}

.np-diagnosis__controls {
  display: flex;
  gap: 8px;
}

.np-small-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(23, 23, 23, .22);
  border-radius: var(--np-radius);
  background: var(--np-white);
  color: var(--np-text);
  font-weight: 700;
  cursor: pointer;
}

.np-small-button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.np-diagnosis__result {
  position: sticky;
  top: 92px;
  padding: 26px;
}

.np-diagnosis--wizard .np-diagnosis__result {
  position: static;
}

.np-diagnosis__result h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.np-diagnosis__note {
  padding: 12px;
  border-radius: var(--np-radius);
  background: var(--np-bg-soft);
  font-size: 14px;
}

.np-fit-card,
.np-news-card,
.np-history-card {
  padding: 22px;
}

.np-fit-card p,
.np-news-card p,
.np-history-card p {
  margin-bottom: 0;
}

.np-note--history {
  margin-top: 18px;
}

.np-voice-placeholder {
  padding: 28px;
  border: 1px dashed rgba(47, 111, 94, .35);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .7);
  color: #5d5149;
}

.np-column-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .48fr);
  gap: 42px;
  align-items: center;
}

.np-column-card {
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(48, 91, 78, .08), rgba(208, 167, 106, .08)),
    rgba(255, 253, 248, .86);
}

.np-column-card h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.3vw, 30px);
}

.np-column-card .np-btn {
  margin-top: 18px;
}

.np-article-hero {
  padding-block: 76px 58px;
  border-bottom: 1px solid var(--np-line);
  background:
    radial-gradient(circle at 85% 10%, rgba(48, 91, 78, .10), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(247, 242, 232, .82));
}

.np-article-hero h1 {
  max-width: 940px;
  margin-top: 14px;
  font-size: clamp(31px, 4vw, 52px);
}

.np-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(62, 57, 50, .72);
  font-size: 13px;
  font-weight: 800;
}

.np-article-meta span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(62, 57, 50, .38);
}

.np-article-section {
  background: var(--np-bg);
}

.np-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .34fr);
  gap: 34px;
  align-items: start;
}

.np-article-card {
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(23, 23, 23, .13);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .92);
}

.np-article-content {
  max-width: 780px;
  margin-inline: auto;
  color: rgba(24, 22, 19, .88);
  font-size: 17px;
  line-height: 2.05;
}

.np-article-content > *:first-child {
  margin-top: 0;
}

.np-article-content p,
.np-article-content ul,
.np-article-content ol {
  margin-block: 1.2em;
}

.np-article-content h2 {
  margin: 2.2em 0 .65em;
  padding-top: 1.1em;
  border-top: 1px solid rgba(23, 23, 23, .14);
  font-size: clamp(25px, 2.6vw, 34px);
}

.np-article-content h3 {
  margin: 1.8em 0 .55em;
  color: var(--np-heading);
  font-size: clamp(20px, 2vw, 25px);
}

.np-article-content a {
  color: #1f5f52;
  font-weight: 800;
  text-underline-offset: 4px;
}

.np-article-content img {
  height: auto;
  margin-inline: auto;
  border-radius: var(--np-radius);
}

.np-article-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.np-article-cta,
.np-article-note {
  background: rgba(255, 253, 248, .86);
}

.np-article-cta h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.np-article-cta .np-btn {
  width: 100%;
  margin-top: 18px;
}

.np-article-note h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.np-keiki {
  align-items: center;
  grid-template-columns: minmax(0, .96fr) minmax(220px, .66fr) minmax(300px, .86fr);
  gap: 24px;
}

.np-keiki__panel {
  padding: 26px;
}

.np-keiki__photo img {
  aspect-ratio: 4 / 5;
  object-position: center center;
}

.np-keiki__panel h3 {
  margin-bottom: 12px;
}

.np-keiki__panel ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
  margin: 0;
}

.np-event-policy {
  margin-top: 22px;
  padding: 24px;
}

.np-event-policy h3 {
  margin-bottom: 10px;
}

.np-event-policy p {
  margin-bottom: 0;
}

.np-keiki__panel .np-text-link,
.np-event-policy .np-text-link {
  display: inline-block;
  margin-top: 16px;
}

.np-history-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.np-history-intro .np-section__head {
  margin-bottom: 0;
}

.np-no-image {
  min-height: 220px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(23, 23, 23, .14);
  border-radius: var(--np-radius);
  background:
    linear-gradient(135deg, rgba(24, 22, 19, .05), rgba(141, 102, 48, .08)),
    rgba(255, 253, 248, .78);
  color: rgba(24, 22, 19, .36);
}

.np-no-image span {
  font-family: var(--np-font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}

.np-flow {
  counter-reset: flow;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.np-flow li {
  padding: 20px;
  border: 1px solid var(--np-line);
  border-radius: var(--np-radius);
  background: var(--np-white);
}

.np-flow span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--np-heading);
  color: var(--np-white);
  font-weight: 700;
}

.np-flow strong {
  display: block;
  line-height: 1.5;
}

.np-flow p {
  margin: 10px 0 0;
  font-size: 14px;
}

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

.np-visual-flow {
  counter-reset: visual-flow;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.np-visual-flow li {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 22, 19, .14);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 18px 42px rgba(31, 26, 20, .08);
}

.np-visual-flow figure {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  margin: 0;
}

.np-visual-flow img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--np-bg-soft);
}

.np-visual-flow figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
}

.np-visual-flow span {
  width: fit-content;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
  border-radius: 999px;
  background: #151513;
  color: var(--np-white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.np-visual-flow strong {
  display: block;
  color: var(--np-heading);
  font-size: 17px;
  line-height: 1.55;
}

.np-visual-flow p {
  margin: 0;
  color: rgba(62, 57, 50, .82);
  font-size: 14px;
  line-height: 1.75;
}

.np-photo {
  margin: 0;
  border-radius: var(--np-radius);
  overflow: hidden;
  border: 1px solid var(--np-line);
  box-shadow: none;
}

.np-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.np-photo figcaption {
  padding: 14px 16px 16px;
  background: rgba(255, 253, 248, .92);
  color: var(--np-heading);
  font-weight: 700;
  text-align: center;
}

.np-photo--portrait,
.np-photo--instructor {
  background: var(--np-white);
}

.np-photo--portrait img {
  aspect-ratio: 4 / 5;
  object-position: center 24%;
}

.np-photo--instructor {
  width: min(320px, 100%);
  justify-self: center;
}

.np-photo--instructor img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.np-photo--meaning img {
  aspect-ratio: 4 / 3;
  object-position: center center;
}

.np-about-facts {
  align-self: start;
}

.np-access-photo img {
  aspect-ratio: 16 / 10;
  object-position: center center;
}

.np-trial-contact {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
}

.np-contact-card {
  padding: 28px;
  border: 1px solid var(--np-line);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .84);
}

.np-contact-card--compact {
  margin-top: 26px;
  padding: 22px;
}

.np-contact-card__tel {
  margin: 10px 0 12px;
  font-family: var(--np-font-serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
}

.np-contact-card__tel a {
  text-decoration: none;
}

.np-contact-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(24, 22, 19, .14);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 20px 46px rgba(31, 26, 20, .10);
}

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

.np-form-field {
  display: grid;
  gap: 8px;
  margin: 0;
  min-width: 0;
}

.np-form-field--full {
  margin-top: 18px;
}

.np-form-field span,
.np-form-field legend {
  color: var(--np-heading);
  font-size: 13px;
  font-weight: 800;
}

.np-form-field em {
  margin-left: 4px;
  color: #9b453a;
  font-style: normal;
  font-size: 11px;
}

.np-form-field input:not([type="radio"]):not([type="checkbox"]),
.np-form-field select,
.np-form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(24, 22, 19, .22);
  border-radius: 7px;
  background: var(--np-white);
  color: var(--np-text);
  font: inherit;
}

.np-form-field textarea {
  resize: vertical;
  line-height: 1.8;
}

.np-form-field input:not([type="radio"]):not([type="checkbox"]):focus,
.np-form-field select:focus,
.np-form-field textarea:focus {
  outline: 3px solid rgba(173, 136, 33, .18);
  border-color: rgba(155, 115, 56, .72);
}

.np-contact-form fieldset.np-form-field {
  padding: 14px;
  border: 1px solid rgba(24, 22, 19, .16);
  border-radius: 7px;
}

.np-contact-form legend {
  padding-inline: 5px;
}

.np-form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.np-form-options label,
.np-form-checkbox {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--np-text);
  font-size: 14px;
  line-height: 1.7;
}

.np-form-options label {
  flex: 1 1 145px;
  padding: 8px 11px;
  border: 1px solid rgba(24, 22, 19, .14);
  border-radius: 7px;
  background: rgba(255, 255, 255, .68);
}

.np-form-checkbox {
  margin-top: 20px;
}

.np-form-checkbox input,
.np-form-options input {
  margin-top: .35em;
  accent-color: #151513;
}

.np-form-note {
  margin: 14px 0 0;
  color: rgba(62, 57, 50, .76);
  font-size: 12px;
}

.np-form-submit {
  width: 100%;
  margin-top: 20px;
}

.np-form-alert {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 7px;
  font-size: 14px;
  line-height: 1.8;
}

.np-form-alert p,
.np-form-alert ul {
  margin: 0;
}

.np-form-alert ul {
  padding-left: 1.2em;
}

.np-form-alert--success {
  border: 1px solid rgba(55, 119, 83, .28);
  background: rgba(234, 248, 239, .92);
  color: #1f5f3b;
}

.np-form-alert--error {
  border: 1px solid rgba(183, 93, 84, .28);
  background: rgba(255, 240, 237, .92);
  color: #7c2f28;
}

.np-video-card {
  max-width: 920px;
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid rgba(24, 22, 19, .14);
  border-radius: var(--np-radius);
  background: #151513;
  box-shadow: 0 18px 42px rgba(31, 26, 20, .10);
}

.np-video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

.np-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.np-access {
  align-items: stretch;
}

.np-info-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.np-map {
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 1px solid var(--np-line);
  border-radius: var(--np-radius);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, .10), rgba(183, 93, 84, .08)),
    var(--np-bg-soft);
  color: var(--np-heading);
  font-family: var(--np-font-serif);
  font-size: 22px;
}

.np-faq-section {
  background:
    linear-gradient(135deg, rgba(208, 167, 106, .10), transparent 36%),
    #151513;
  color: rgba(255, 253, 248, .78);
}

.np-faq-section h2,
.np-faq-section .np-eyebrow {
  color: var(--np-white);
}

.np-faq-section .np-eyebrow {
  color: #d0a76a;
}

.np-faq-layout {
  align-items: start;
}

.np-faq-layout--framed {
  gap: clamp(28px, 5vw, 64px);
}

.np-faq-layout--framed .np-section__head {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid rgba(255, 253, 248, .16);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .06);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, .08);
}

.np-faq-list {
  display: grid;
  gap: 12px;
}

.np-faq-list--framed {
  padding: 12px;
  border: 1px solid rgba(255, 253, 248, .18);
  border-radius: calc(var(--np-radius) + 4px);
  background:
    linear-gradient(135deg, rgba(208, 167, 106, .12), rgba(255, 253, 248, .02) 36%),
    rgba(255, 253, 248, .04);
}

.np-faq-list--framed details {
  background: rgba(255, 253, 248, .08);
}

details {
  border: 1px solid rgba(255, 253, 248, .18);
  border-radius: var(--np-radius);
  background: rgba(255, 253, 248, .06);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, .07);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--np-white);
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: rgba(255, 253, 248, .74);
}

.np-faq-note-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0 20px 18px 42px;
  color: rgba(255, 253, 248, .74);
}

.np-faq-note-list + p {
  padding-top: 0;
}

.np-faq-section--light {
  background:
    linear-gradient(135deg, rgba(208, 167, 106, .14), transparent 44%),
    #fff9ef;
  color: var(--np-text);
}

.np-faq-section--light h2 {
  color: var(--np-heading);
}

.np-faq-section--light .np-eyebrow {
  color: #8a5b1d;
}

.np-faq-section--light .np-section__head {
  border-color: rgba(23, 23, 23, .12);
  background: rgba(255, 253, 248, .74);
  box-shadow: none;
}

.np-faq-section--light .np-section__head p:not(.np-eyebrow) {
  color: rgba(62, 57, 50, .78);
}

.np-faq-illustration {
  margin: 22px 0 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, .12);
  border-radius: var(--np-radius);
  background: #f5efe4;
}

.np-faq-illustration img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.np-faq-section--light .np-faq-list--framed {
  border-color: rgba(23, 23, 23, .12);
  background: rgba(255, 253, 248, .62);
}

.np-faq-section--light details {
  border-color: rgba(23, 23, 23, .12);
  background: rgba(255, 253, 248, .9);
  box-shadow: none;
}

.np-faq-section--light summary {
  color: var(--np-heading);
}

.np-faq-section--light details p,
.np-faq-section--light .np-faq-note-list {
  color: rgba(62, 57, 50, .78);
}

.np-final-cta {
  padding-block: 84px;
  border-top: 1px solid rgba(24, 22, 19, .10);
  background:
    linear-gradient(120deg, rgba(208, 167, 106, .16), rgba(255, 253, 248, 0) 42%),
    var(--np-bg);
  color: var(--np-text);
}

.np-final-cta__inner {
  align-items: center;
}

.np-final-cta h2,
.np-final-cta .np-eyebrow {
  color: var(--np-heading);
}

.np-final-cta h2 .np-nowrap {
  display: inline-block;
}

.np-final-cta .np-eyebrow {
  color: #8d6630;
}

.np-final-cta p {
  max-width: 680px;
}

.np-final-cta .np-actions {
  align-items: center;
}

.np-final-cta .np-btn--primary {
  background: var(--np-coral-cta);
  color: var(--np-white);
  box-shadow: 0 12px 26px rgba(24, 22, 19, .12);
}

.np-final-cta .np-btn--secondary {
  background: rgba(255, 253, 248, .78);
}

.np-final-cta__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 22, 19, .16);
  border-radius: var(--np-radius);
  background: var(--np-bg-soft);
  box-shadow: 0 18px 48px rgba(31, 26, 20, .10);
}

.np-final-cta__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
}

.np-final-cta__media figcaption {
  padding: 12px 14px;
  color: #5e544b;
  font-size: 13px;
  font-weight: 700;
}

.np-footer {
  padding-block: 34px;
  border-top: 1px solid rgba(255, 253, 248, .12);
  background: #151513;
  color: var(--np-white);
}

.np-footer p {
  margin: 0;
}

.np-footer__brand {
  color: var(--np-white);
  font-size: 18px;
  font-weight: 700;
}

.np-footer__small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.np-footer__copyright {
  margin-top: 14px !important;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
}

.np-mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--np-line);
  background: rgba(255, 253, 248, .96);
  backdrop-filter: blur(12px);
}

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

  .np-menu-button {
    display: grid;
    margin-left: auto;
  }

  .np-mobile-menu {
    position: fixed;
    top: 78px;
    right: 12px;
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 253, 248, .12);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(208, 167, 106, .16), transparent 44%),
      #151513;
    box-shadow: 0 24px 58px rgba(24, 22, 19, .34);
  }

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

  .np-mobile-menu__label {
    grid-column: 1 / -1;
    padding: 4px 2px 7px;
    color: #d0a76a;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .np-mobile-menu a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 253, 248, .14);
    border-radius: 10px;
    background: rgba(255, 253, 248, .06);
    color: rgba(255, 253, 248, .92);
    font-weight: 800;
    text-decoration: none;
  }

  .np-mobile-menu a::after {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
    opacity: .72;
  }

  .np-mobile-menu a:hover {
    background: rgba(255, 253, 248, .12);
  }

  .np-mobile-menu__cta {
    grid-column: 1 / -1;
    background: var(--np-coral-cta) !important;
    border-color: transparent !important;
    color: var(--np-white) !important;
  }

  .np-menu-open .np-mobile-cta {
    transform: translateY(110%);
    pointer-events: none;
  }

  .np-header__inner {
    min-height: 72px;
  }

  .np-hero {
    min-height: 0;
    padding: 18px 0 58px;
  }

  .np-hero__shade {
    opacity: .55;
  }

  .np-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .np-hero__media img {
    aspect-ratio: 3 / 2;
    object-position: center 42%;
  }

  .np-hero__media {
    order: -1;
  }

  .np-hero__content {
    max-width: none;
  }

  .np-culture-scene__inner {
    grid-template-columns: 1fr;
  }

  .np-culture-scene__media {
    order: -1;
  }

  .np-class-grid,
  .np-fit-grid,
  .np-news-grid,
  .np-history-grid,
  .np-diagnosis,
  .np-keiki,
  .np-flow,
  .np-visual-flow,
  .np-split,
  .np-instructor,
  .np-access,
  .np-faq-layout,
  .np-fit-intro,
  .np-instructor-feature,
  .np-logo-story,
  .np-lineage-points,
  .np-profile-points,
  .np-column-teaser,
  .np-article-layout,
  .np-works-grid,
  .np-class-overview,
  .np-contact-hub,
  .np-page-hero__inner,
  .np-content-grid,
  .np-section-grid,
  .np-related-grid,
  .np-about-photo-grid,
  .np-image-band,
  .np-history-intro,
  .np-trial-contact,
  .np-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .np-about-photo-grid {
    grid-template-areas: none;
  }

  .np-image-tile--featured {
    grid-area: auto;
  }

  .np-flow {
    gap: 12px;
  }

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

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

  .np-fee-grid {
    grid-template-columns: 1fr;
  }

  .np-fee-item,
  .np-fee-item:nth-child(3n) {
    border-right: 0;
  }

  .np-visual-flow {
    gap: 12px;
  }

  .np-faq-layout--framed .np-section__head {
    position: static;
  }

  .np-instructor-feature {
    gap: 28px;
  }

  .np-instructor-feature__portrait {
    order: 2;
  }

  .np-instructor-feature__body {
    order: 1;
  }

  .np-instructor .np-photo {
    order: 2;
  }

  .np-page-nav {
    top: 64px;
  }

  .np-page-hero {
    padding-block: 18px 58px;
  }

  .np-page-hero__inner {
    gap: 26px;
  }

  .np-page-hero__media {
    order: -1;
  }

  .np-page-hero__media img {
    aspect-ratio: 16 / 10;
  }

  .np-side-panel,
  .np-article-aside,
  .np-timeline__year h2 {
    position: static;
  }

  .np-timeline__year {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .np-image-tile,
  .np-image-tile--featured,
  .np-image-tile--tall {
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 96px;
  }

  body::after {
    display: block;
  }

  :target {
    scroll-margin-top: 96px;
  }

  body {
    font-size: 15.5px;
    line-height: 1.8;
  }

  .np-container {
    width: auto;
    max-width: none;
    margin-inline: 14px;
  }

  .np-header__cta {
    display: none;
  }

  .np-logo {
    max-width: calc(100% - 66px);
    gap: 8px;
  }

  .np-logo__mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .np-logo__copy strong {
    font-size: 15px;
  }

  .np-logo__copy span {
    font-size: 10px;
  }

  .np-menu-button {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .np-hero {
    padding-top: 14px;
  }

  .np-hero__media img {
    aspect-ratio: 16 / 10;
    object-position: center 42%;
  }

  .np-hero__content {
    padding-block: 0;
  }

  .np-culture-highlight {
    margin-top: 24px;
    padding: 18px 18px 20px;
  }

  .np-culture-highlight::before {
    width: 40px;
    right: 18px;
  }

  .np-culture-highlight strong {
    font-size: 18px;
  }

  .np-hawaiian,
  .np-hawaiian-word,
  [lang="haw"] {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .np-page-hero {
    padding-block: 14px 46px;
  }

  .np-article-hero {
    padding-block: 48px 40px;
  }

  .np-article-card {
    padding: 24px 18px;
  }

  .np-article-content {
    font-size: 15.5px;
    line-height: 1.95;
  }

  .np-page-hero__lead {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.45;
  }

  h2 {
    font-size: 25px;
  }

  .np-hero__lead,
  .np-lead {
    font-size: 16px;
  }

  .np-section {
    padding-block: 56px;
  }

  .np-final-cta {
    padding-block: 62px;
  }

  .np-final-cta__media img {
    aspect-ratio: 4 / 3;
  }

  .np-actions {
    flex-direction: column;
  }

  .np-btn {
    width: 100%;
    min-height: 48px;
  }

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

  .np-badges li {
    text-align: center;
  }

  .np-class-grid,
  .np-point-grid,
  .np-fit-grid,
  .np-news-grid,
  .np-history-grid,
  .np-diagnosis,
  .np-keiki,
  .np-section-grid,
  .np-related-grid {
    grid-template-columns: 1fr;
  }

  .np-image-tile,
  .np-image-tile--tall {
    min-height: 220px;
  }

  .np-diagnosis__result {
    position: static;
  }

  .np-info-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .np-class-card dl div {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .np-trial-summary__list {
    grid-template-columns: 1fr;
  }

  .np-trial-detail__image {
    min-height: 220px;
  }

  .np-trial-detail__image img {
    aspect-ratio: 4 / 3;
  }

  .np-form-grid {
    grid-template-columns: 1fr;
  }

  .np-contact-form {
    padding: 20px;
  }

  .np-form-options {
    display: grid;
    gap: 8px;
  }

  .np-map {
    min-height: 220px;
  }

  .np-mobile-cta {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .np-mobile-cta .np-btn {
    padding-inline: 8px;
    font-size: 14px;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
