:root {
  --bg: #f7f6f1;
  --surface: #ffffff;
  --surface-alt: #f2f4ef;
  --line: #dde4db;
  --line-strong: #c9d3c7;
  --text: #1f332d;
  --text-soft: #61756d;
  --primary: #1d6d5f;
  --primary-dark: #155246;
  --accent: #efdca8;
  --shadow: 0 18px 45px rgba(23, 55, 47, 0.12);
  --radius: 24px;
  --container: 1200px;
  --font-sans: "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", sans-serif;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text);
  background: linear-gradient(180deg, #fcfcf8 0%, #f4f3eb 100%);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
select, button { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(201, 211, 199, 0.8);
}

.site-header__inner,
.site-nav__list,
.button-row,
.section-heading,
.site-footer__bottom,
.breadcrumbs,
.list-summary {
  display: flex;
  align-items: center;
}

.site-header__inner {
  position: relative;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.site-nav {
  margin-left: auto;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}

.site-header-search {
  position: relative;
}

.site-header-search__toggle,
.site-header-search__submit {
  font: inherit;
}

.site-header-search__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-header-search__toggle .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.site-header-search__toggle:hover,
.site-header-search__toggle[aria-expanded="true"] {
  color: var(--primary);
  border-color: rgba(29, 109, 95, 0.28);
  background: #f7fcfa;
}

.site-header-search__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  align-items: center;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.site-header-search__panel.is-open {
  display: flex;
}

.site-header-search__panel input[type="search"] {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font-size: 14px;
}

.site-header-search__panel input[type="search"]::placeholder {
  color: #9ca3af;
}

.site-header-search__panel input[type="search"]:focus {
  outline: none;
  border-color: rgba(29, 109, 95, 0.5);
  box-shadow: 0 0 0 3px rgba(29, 109, 95, 0.12);
}

.site-header-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-header-search__submit:hover {
  background: var(--primary-dark);
}

.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  cursor: pointer;
}

.site-nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: var(--text-lg);
}

.site-logo__mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #3fa38c);
  color: #fff;
}

.site-nav__list {
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  color: var(--text-soft);
  font-size: var(--text-sm);
  font-weight: 600;
}

.site-nav__list li:last-child a {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(20, 54, 46, 0.68), rgba(20, 54, 46, 0.22)),
    url("https://images.unsplash.com/photo-1534940519139-f860fb3c6e38?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.18), transparent 25%),
    linear-gradient(180deg, rgba(4, 16, 13, 0.1), rgba(4, 16, 13, 0.48));
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 660px;
}

.hero h1,
.page-heading h1,
.detail-hero h1,
.article-hero h1 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.25rem, 6vw, 4.9rem);
  color: #fff;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.eyebrow,
.detail-hero__eyebrow,
.entry-card__eyebrow,
.story-card__meta {
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow { color: rgba(255,255,255,0.9); }
.hero__copy { max-width: 720px; padding: 80px 0 120px; }
.hero__lead {
  max-width: 620px;
  color: rgba(255,255,255,0.92);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.single-feature .article-hero,
.single-column .article-hero,
.single-feature .section,
.single-column .section {
  background: #fff;
}

.single-feature .article-hero,
.single-column .article-hero {
  border-bottom: 1px solid #f1f5f9;
}

.search-panel-wrap { margin-top: -86px; position: relative; z-index: 3; }
.search-panel,
.content-card,
.spec-card,
.entry-card,
.story-card,
.pill-card,
.feature-link,
.prose-page,
.filter-section,
.site-footer,
.article-body {
  background: var(--surface);
  border: 1px solid rgba(201, 211, 199, 0.7);
  box-shadow: var(--shadow);
}

.search-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
}

.field label {
  display: block;
  margin-bottom: 10px;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-soft);
}

.field select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  font-size: var(--text-sm);
}

.field select:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 1;
}

.field--submit { display: flex; align-items: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: var(--text-sm);
  font-weight: 500;
}

.button--primary { background: var(--primary); color: #fff; }
.button--ghost { background: #fff; color: var(--text); border-color: var(--line-strong); }

.button,
.nn-condition-option {
  cursor: pointer;
}

.button--primary {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button--primary:hover {
  background: #0b5f58;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.24);
  transform: translateY(-1px);
}

.button--primary:active {
  transform: translateY(0);
}

.section, .stats-section, .page-heading, .filter-section, .detail-hero, .article-hero { padding: 72px 0; }
.section--alt, .stats-section, .filter-section { background: linear-gradient(180deg, #f4f6f1, #eef2ed); }

.section-heading {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2, .page-heading h1, .detail-hero h1, .article-hero h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.2;
}

.section-heading h2::before, .page-heading h1::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 32px;
  margin-right: 16px;
  border-radius: 999px;
  background: var(--primary);
  vertical-align: middle;
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
  color: var(--text-soft);
  font-size: var(--text-base);
  line-height: 1.9;
}

.stats-grid,
.pill-grid,
.card-grid,
.story-grid,
.feature-links,
.site-footer__grid,
.filter-grid,
.detail-hero__grid,
.detail-layout,
.two-column {
  display: grid;
  gap: 22px;
}

.stats-grid { grid-template-columns: repeat(4, 1fr); }
.stats-grid div { text-align: center; padding: 24px; }
.stats-grid strong { display: block; font-size: 3rem; color: var(--primary); }
.stats-grid span { color: var(--text-soft); }

.pill-grid { grid-template-columns: repeat(4, 1fr); }
.pill-card {
  padding: 22px;
  border-radius: 22px;
  text-align: center;
  font-weight: 700;
}

.card-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid--5 { grid-template-columns: repeat(5, 1fr); }
.story-grid, .story-stack { grid-template-columns: repeat(3, 1fr); }
.two-column, .detail-hero__grid, .detail-layout { grid-template-columns: 1.45fr 1fr; }

.entry-card,
.story-card {
  border-radius: 26px;
  overflow: hidden;
}

.entry-card__image,
.story-card__image,
.detail-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.entry-card__body,
.story-card__body,
.content-card,
.spec-card,
.article-body,
.prose-page {
  padding: 26px;
}

.entry-card__title,
.story-card__title {
  margin: 10px 0 12px;
  font-size: var(--text-xl);
  line-height: 1.45;
  font-weight: 500;
}

.entry-card__excerpt,
.story-card__excerpt,
.detail-hero__lead,
.card-meta,
.spec-list,
.assist-links h2,
.breadcrumbs,
.list-summary,
.empty-state,
.site-footer li a,
.site-footer__bottom {
  color: var(--text-soft);
  font-size: var(--text-sm);
}

.entry-card__excerpt,
.story-card__excerpt,
.card-meta,
.spec-list,
.article-body,
.prose-page,
.content-card,
.spec-card,
.detail-hero__lead,
.assist-links h2,
.empty-state {
  font-size: var(--text-sm);
}

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #edf7f3;
  border: 1px solid #bfe0d4;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.card-meta,
.spec-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.card-meta div,
.spec-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
}

.card-meta dt,
.spec-list dt { font-weight: 600; color: var(--text); }
.text-link {
  color: var(--primary);
  font-size: var(--text-sm);
  font-weight: 500;
}

.breadcrumbs-wrap { border-bottom: 1px solid rgba(201, 211, 199, 0.6); background: rgba(255,255,255,0.65); }
.breadcrumbs { gap: 10px; min-height: 54px; font-size: var(--text-sm); }
.breadcrumbs__sep { opacity: 0.5; }

.page-heading { background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,246,241,0.9)); }
.page-heading h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.page-heading h1 { font-size: clamp(2.2rem, 4.5vw, 3rem); }

.filter-section {
  padding-top: 28px;
  padding-bottom: 28px;
  border-radius: 28px;
}

.filter-grid { grid-template-columns: repeat(5, 1fr); align-items: end; }
.assist-links { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.assist-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
}

.list-summary { justify-content: space-between; margin-bottom: 24px; font-size: var(--text-sm); }
.list-summary strong { color: var(--text); }

.pagination-wrap { margin-top: 32px; }
.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.page-numbers {
  display: inline-flex;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-size: var(--text-sm);
}
.page-numbers.current { background: var(--primary); color: #fff; border-color: var(--primary); }

.detail-hero {
  background: radial-gradient(circle at top left, rgba(239,220,168,0.32), transparent 30%), linear-gradient(180deg, #fbfcf8, #eff4ee);
}
.detail-hero__grid { align-items: center; }
.detail-hero__lead { font-size: 18px; margin: 18px 0 0; }
.detail-hero__lead { font-size: var(--text-base); margin: 18px 0 0; line-height: 1.9; }
.detail-hero__media img { border-radius: 30px; box-shadow: var(--shadow); }

.content-card + .content-card,
.spec-card + .spec-card { margin-top: 24px; }

.article-body,
.prose-page {
  border-radius: 26px;
}

.single-feature .article-body,
.single-column .article-body {
  background: #fff;
  border: 0;
  box-shadow: none;
}

.section--article-visual {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fff;
}

.article-visual {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(201, 211, 199, 0.7);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.article-visual__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-body h2,
.prose-page h2,
.content-card h2,
.spec-card h2 {
  margin-top: 0;
  font-size: var(--text-2xl);
  font-weight: 500;
}

.article-body h2 {
  position: relative;
  margin: 56px 0 22px;
  padding: 0 0 12px 18px;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  box-shadow: none;
}

.article-body h2::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 12px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: #0f766e;
}

.article-body h3 {
  margin: 34px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 118, 110, 0.18);
  font-size: calc(var(--text-xl) + 1px);
  font-weight: 600;
  color: #14532d;
}

.single-feature .eyebrow,
.single-column .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: #ecfdf5;
  color: #0f766e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer h3 {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-footer li a {
  font-size: var(--text-sm);
}

.empty-state {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.75);
  border: 1px dashed var(--line-strong);
  text-align: center;
}

.feature-links { grid-template-columns: repeat(3, 1fr); }
.feature-link {
  padding: 24px;
  border-radius: 22px;
  font-weight: 700;
}

.stack-list {
  display: grid;
  gap: 18px;
}

.site-footer {
  margin-top: 72px;
  padding: 48px 0 28px;
  border-radius: 28px 28px 0 0;
  background: #172f29;
  color: #fff;
}

.site-footer__grid { grid-template-columns: repeat(4, 1fr); }
.site-footer h3 { margin-top: 0; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.site-footer li a { color: rgba(255,255,255,0.72); }
.site-footer__bottom {
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 1100px) {
  .search-panel,
  .filter-grid,
  .card-grid,
  .card-grid--5,
  .story-grid,
  .feature-links,
  .stats-grid,
  .pill-grid,
  .site-footer__grid,
  .two-column,
  .detail-hero__grid,
  .detail-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-nav__list,
  .section-heading,
  .site-footer__bottom,
  .list-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-panel,
  .filter-grid,
  .card-grid,
  .card-grid--5,
  .story-grid,
  .feature-links,
  .stats-grid,
  .pill-grid,
  .site-footer__grid,
  .two-column,
  .detail-hero__grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero__inner { min-height: 560px; }
  .search-panel-wrap { margin-top: -48px; }
  .section, .stats-section, .page-heading, .filter-section, .detail-hero, .article-hero { padding: 52px 0; }
}

/* Faithful redesign pass */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

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

.site-logo__image {
  display: block;
  height: 24px;
  width: auto;
}

.site-nav__list {
  gap: 38px;
}

.site-nav__list a {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.site-nav__list li:last-child a {
  border-width: 2px;
  border-color: #d1d5db;
  border-radius: 10px;
  padding: 10px 22px;
}

.site-footer {
  margin-top: 0;
  border-radius: 0;
  background: #111827;
  color: #fff;
  box-shadow: none;
  border: none;
}

.site-footer__logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-footer__grid {
  gap: 48px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
}

.nn-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #d1d5db;
}

.nn-hero__slides,
.nn-hero__slide {
  position: absolute;
  inset: 0;
}

.nn-hero__slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.38));
}

.nn-hero__slide {
  opacity: 0;
  animation: nnHeroFade 15s infinite;
}

.nn-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nn-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 680px;
}

.nn-hero__copy {
  max-width: 680px;
  margin-bottom: 96px;
}

.nn-hero__copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(4rem, 7vw, 4.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.nn-search-overlap {
  position: relative;
  margin-top: -96px;
  z-index: 4;
}

.nn-search-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
}

.nn-search-overlap .field--submit {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
}

.nn-search-box--archive {
  box-shadow: none;
  background: transparent;
  padding: 0;
  border: none;
}

.nn-search-box .field select {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  color: #111827;
}

.nn-search-box .field:not(.field--condition) {
  flex: 0 0 200px;
}

.field--condition {
  flex: 1;
  min-width: 0;
}

.nn-condition-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.nn-condition-option {
  padding: 8px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nn-condition-option:hover,
.nn-condition-option.is-active {
  border-color: #0f766e;
  background: #0f766e;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.18);
}

.nn-condition-option.is-active::before {
  content: "✓";
  margin-right: 6px;
  font-size: 11px;
  font-weight: 700;
}

.nn-condition-group .nn-cloud-chip {
  margin-bottom: 0;
}

.nn-button-icon {
  gap: 10px;
  border-radius: 10px;
  padding: 14px 28px;
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.18);
}

.nn-button-icon .dashicons {
  width: 20px;
  height: 20px;
  font-size: 18px;
}

.nn-band {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.nn-band .container {
  padding-top: 64px;
  padding-bottom: 64px;
}

.nn-band__lead {
  margin: 0 0 48px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
}

.nn-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 280px));
  justify-content: center;
  gap: 24px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.nn-stats div {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 22px 20px 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.nn-stats__label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #6b7280;
}

.nn-stats strong {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  color: #0f766e;
  font-weight: 600;
}

.nn-stats__number,
.nn-stats__unit {
  display: inline-block;
}

.nn-stats__unit {
  margin-left: 6px;
  font-size: 0.5em;
  letter-spacing: 0.03em;
}

.nn-section {
  padding: 64px 0;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.nn-section--muted {
  background: #f9fafb;
  border-bottom-color: #e5e7eb;
}

.nn-section__heading,
.nn-ranking-head,
.nn-page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.nn-section__title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.nn-section__title + .nn-purpose-grid,
.nn-section__title + .nn-chip-cloud,
.nn-section__title + form {
  margin-top: 18px;
}

.nn-section__line {
  width: 4px;
  height: 32px;
  border-radius: 999px;
  background: #0f766e;
  flex: 0 0 auto;
}

.nn-section__title h1,
.nn-section__title h2,
.nn-ranking-head h2,
.nn-page-heading h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #111827;
}

.page-heading .nn-section__title h1::before,
.nn-page-heading h1::before {
  content: none;
  display: none;
}

.nn-page-heading {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}

.nn-page-heading p,
.nn-ranking-head p {
  margin: 12px 0 0;
  font-size: 16px;
  color: #6b7280;
}

.nn-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #0f766e;
}

.nn-ranking-head__button {
  white-space: nowrap;
}

.nn-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.nn-area-grid--compact {
  grid-template-columns: repeat(6, 1fr);
}

.nn-area-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 20px 16px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #e5e7eb;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nn-area-tile:hover {
  border-color: #0f766e;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.12);
}

.nn-ranking-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.nn-rank-card {
  display: block;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nn-rank-card:hover {
  transform: translateY(-2px);
  border-color: #0f766e;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.nn-rank-card__media {
  position: relative;
  height: 176px;
  overflow: hidden;
}

.nn-rank-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nn-rank-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #facc15;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.18);
}

.nn-rank-card__body {
  padding: 20px;
}

.nn-rank-card__body h3 {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #111827;
  font-weight: 500;
}

.nn-rank-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #6b7280;
}

.nn-rank-card__meta .dashicons {
  width: 14px;
  height: 14px;
  font-size: 14px;
}

.tag-chip--compact {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 400;
}

.nn-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.nn-purpose-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nn-purpose-link:hover {
  border-color: #0f766e;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.12);
}

.nn-purpose-link__arrow {
  margin-left: auto;
  color: #9ca3af;
  font-size: 18px;
}

.nn-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.nn-cloud-chip {
  padding: 12px 22px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
}

.nn-cloud-chip--small {
  padding: 8px 16px;
  font-size: 12px;
}

.nn-chip-cloud--small {
  margin-top: 20px;
}

.nn-chip-cloud--filters .nn-cloud-chip {
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nn-chip-cloud--filters .nn-cloud-chip.is-active,
.nn-chip-cloud--filters .nn-cloud-chip:hover {
  border-color: #0f766e;
  background: #ecfdf5;
  color: #0f766e;
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.12);
}

.nn-center-button {
  display: flex;
  justify-content: center;
}

.nn-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.nn-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.nn-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nn-card:hover {
  transform: translateY(-2px);
  border-color: #0f766e;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.1);
}

.entry-card__image {
  aspect-ratio: 16 / 11;
}

.entry-card__body {
  padding: 24px;
}

.entry-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.farm-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.farm-status {
  background: #ecfdf5;
  color: #047857;
}

.farm-status--pre_open {
  background: #fef3c7;
  color: #92400e;
}

.farm-status--closed {
  background: #fee2e2;
  color: #b91c1c;
}

.farm-status--hidden,
.farm-status--draft,
.farm-status--unknown {
  background: #e5e7eb;
  color: #374151;
}

.entry-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #6b7280;
  text-transform: none;
  letter-spacing: 0;
}

.entry-card__eyebrow .dashicons {
  width: 16px;
  height: 16px;
  font-size: 16px;
  color: #0f766e;
}

.entry-card__title {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.entry-card__subtitle {
  margin: -4px 0 10px;
  font-size: 13px;
  line-height: 1.7;
  color: #0f766e;
}

.entry-card__excerpt {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.75;
  color: #4b5563;
}

.entry-card__footer {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid #f3f4f6;
}

.entry-card__access {
  font-size: 14px;
  color: #6b7280;
}

.card-meta {
  margin: 18px 0;
}

.card-meta dt,
.card-meta dd {
  font-size: 14px;
}

.story-card__body {
  padding: 24px;
}

.story-card__meta {
  font-size: 12px;
  color: #6b7280;
  text-transform: none;
  letter-spacing: 0;
}

.story-card__title {
  margin: 12px 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.story-card__excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: #4b5563;
}

.nn-cta {
  background: linear-gradient(135deg, #0f766e 0%, #0f766e 40%, #115e59 100%);
  border-bottom: 1px solid #0f4f4a;
}

.nn-cta__inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 96px 0;
  text-align: center;
}

.nn-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nn-cta__icon .dashicons {
  width: 32px;
  height: 32px;
  font-size: 32px;
}

.nn-cta h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.nn-cta p {
  margin: 0 0 44px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

.nn-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  border-radius: 14px;
  background: #fff;
  color: #0f766e;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.2);
}

.nn-about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.nn-about-grid--homepage-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nn-about-card {
  display: block;
  padding: 40px;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nn-about-card:hover {
  border-color: #0f766e;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.08);
}

.nn-about-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: #ecfdf5;
  color: #0f766e;
}

.nn-about-card__icon .dashicons {
  width: 28px;
  height: 28px;
  font-size: 28px;
}

.nn-about-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

.nn-about-card p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

.nn-about-intro {
  padding: 40px 44px;
}

.nn-about-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
}

.nn-about-grid--features {
  grid-template-columns: repeat(3, 1fr);
}

.nn-about-card--feature {
  padding: 36px 32px;
  text-align: left;
}

.nn-about-card__eyebrow {
  margin: 0 0 10px;
}

.nn-about-card--feature h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.nn-about-card--feature p:last-child {
  line-height: 1.8;
}

.nn-about-links {
  display: grid;
  gap: 18px;
}

.nn-about-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nn-about-link-card:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.nn-about-link-card__body h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.nn-about-link-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #6b7280;
}

.nn-about-link-card__arrow {
  flex-shrink: 0;
  font-size: 28px;
  line-height: 1;
  color: #0f766e;
}

.nn-about-hero {
  background:
    radial-gradient(circle at top left, rgba(239, 220, 168, 0.22), transparent 28%),
    linear-gradient(180deg, #fbfcf8, #f3f6f1);
  border-bottom: 1px solid rgba(201, 211, 199, 0.45);
}

.nn-about-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.nn-about-hero .article-lead {
  max-width: 620px;
  margin: 18px auto 0;
  color: #4b5b57;
  line-height: 1.9;
}

.nn-about-section {
  background: linear-gradient(180deg, rgba(250, 251, 248, 0.5), rgba(255, 255, 255, 0));
}

.nn-about-simple {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.nn-about-intro-card {
  padding: 28px 30px;
  border: 1px solid rgba(31, 122, 103, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbf7);
  box-shadow: 0 16px 36px rgba(20, 91, 78, 0.06);
}

.nn-about-intro-card p {
  margin: 0;
  font-size: 17px;
  line-height: 2;
  color: #33423f;
}

.nn-about-feature-list {
  display: grid;
  gap: 16px;
}

.nn-about-feature-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 28px;
  border: 1px solid rgba(31, 122, 103, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
}

.nn-about-feature-item__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1f7a67, #185e50);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nn-about-feature-item__body h2 {
  margin: 0 0 12px;
  color: #182624;
}

.nn-about-feature-item__body p {
  margin: 0;
  line-height: 1.95;
  color: #50605b;
}

.nn-qa-hero {
  background:
    radial-gradient(circle at top right, rgba(239, 220, 168, 0.24), transparent 26%),
    linear-gradient(180deg, #fbfcf8, #f4f7f3);
  border-bottom: 1px solid rgba(201, 211, 199, 0.45);
}

.nn-qa-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.nn-qa-section {
  background: linear-gradient(180deg, rgba(247, 250, 248, 0.92), rgba(255, 255, 255, 0.98));
}

.nn-faq-list {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.nn-faq-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 28px;
  border: 1px solid rgba(31, 122, 103, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.nn-faq-item__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  border-radius: 18px;
  background: rgba(31, 122, 103, 0.1);
  color: #1f7a67;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.nn-faq-item__body h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.5;
  color: #182624;
}

.nn-faq-item__body p {
  margin: 0;
  line-height: 1.95;
  color: #4f5f5a;
}

.nn-list-summary strong {
  margin-right: 4px;
  font-size: 18px;
  color: #111827;
}

.nn-assist-links {
  margin-top: 24px;
}

.nn-assist-links h2 {
  margin: 0 12px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
}

.nn-assist-links .nn-assist-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.3;
  color: #0f766e;
  background: #f3fbf8;
  border: 1px solid rgba(15, 118, 110, 0.18);
}

.nn-assist-links .nn-assist-link:hover {
  background: #e9f8f3;
  border-color: rgba(15, 118, 110, 0.28);
}

.nn-detail-title {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.nn-detail-title .container {
  padding-top: 48px;
  padding-bottom: 48px;
}

.nn-detail-title h1 {
  margin: 0 0 16px;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #111827;
}

.nn-detail-subtitle {
  margin: -4px 0 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #0f766e;
}

.nn-detail-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #6b7280;
}

.nn-detail-meta > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nn-detail-meta .dashicons {
  width: 16px;
  height: 16px;
  font-size: 16px;
  color: #0f766e;
}

.nn-gallery-block {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.nn-gallery-block .container {
  padding-top: 48px;
  padding-bottom: 48px;
}

.nn-gallery__main {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 16px;
}

.nn-gallery__main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.nn-gallery__thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.nn-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.nn-gallery__thumb {
  flex: 0 0 calc((100% - 48px) / 5);
  overflow: hidden;
  border-radius: 10px;
  scroll-snap-align: start;
}

.nn-gallery__thumb-strip {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 12px;
  align-items: center;
}

.nn-gallery__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 72px;
  padding: 0;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nn-gallery__nav:hover {
  border-color: #0f766e;
  color: #0f766e;
}

.nn-gallery__thumb-button {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.82;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.nn-gallery__thumb-button:hover,
.nn-gallery__thumb-button.is-active {
  opacity: 1;
  transform: translateY(-1px);
  filter: saturate(1.02);
}

.nn-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nn-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
}

.nn-detail-section {
  margin-bottom: 64px;
}

.nn-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.nn-prose {
  font-size: 16px;
  line-height: 1.9;
  color: #374151;
}

.nn-prose p {
  margin: 0 0 20px;
}

.nn-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.nn-info-card,
.nn-info-box,
.nn-sticky-card,
.nn-note-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
}

.nn-info-card {
  padding: 28px;
}

.nn-info-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.nn-info-card__head .dashicons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ecfdf5;
  color: #0f766e;
  font-size: 24px;
}

.nn-info-card__head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #111827;
}

.nn-info-card ul,
.nn-note-box ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}

.nn-icon-list {
  display: grid;
  gap: 12px;
}

.nn-icon-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.nn-icon-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ecfdf5;
  color: #0f766e;
}

.nn-icon-list__icon .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.nn-icon-list__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #1f2937;
}

.nn-info-box {
  padding: 32px;
}

.nn-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.nn-info-row + .nn-info-row {
  margin-top: 20px;
}

.nn-info-row .dashicons {
  color: #0f766e;
}

.nn-info-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

.nn-info-row p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

.nn-map-placeholder {
  height: 400px;
  border-radius: 20px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 16px;
}

.nn-map-embed {
  overflow: hidden;
  min-height: 300px;
  border-radius: 20px;
  background: #e5e7eb;
}

.nn-map-embed iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.nn-map-fallback {
  display: grid;
  gap: 16px;
  place-items: center;
  min-height: 240px;
  padding: 32px;
  border: 1px solid rgba(201, 211, 199, 0.7);
  border-radius: 20px;
  background: #f8fafc;
  text-align: center;
}

.nn-map-fallback p {
  margin: 0;
  color: #4b5563;
}

.nn-sticky-card {
  position: sticky;
  top: 96px;
  padding: 32px;
  border-width: 2px;
}

.nn-side-specs {
  display: grid;
  gap: 18px;
}

.nn-side-specs > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nn-side-specs .dashicons {
  color: #0f766e;
}

.nn-side-specs small {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  color: #6b7280;
}

.nn-side-specs strong {
  font-size: 14px;
  color: #111827;
  font-weight: 500;
}

.nn-side-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.nn-side-actions .button {
  width: 100%;
}

.nn-ranking-list {
  margin-top: 48px;
}

.nn-ranking-list h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 500;
  color: #111827;
}

.nn-ranking-list__item {
  display: grid;
  grid-template-columns: 32px 128px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.nn-ranking-list__item + .nn-ranking-list__item {
  margin-top: 16px;
}

.nn-ranking-list__rank {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.nn-ranking-list__thumb {
  overflow: hidden;
  border-radius: 8px;
}

.nn-ranking-list__thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.nn-ranking-list__body h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

.nn-ranking-list__body div {
  font-size: 14px;
  color: #6b7280;
}

.nn-note-box {
  max-width: 840px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
}

.nn-note-box h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 500;
}

.nn-contact-notes ul {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 10px;
}

.nn-contact-notes__warning {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: #92400e;
}

.nn-contact-form-card {
  padding: 36px 40px 40px;
}

.article-hero--form-page {
  padding-bottom: 28px;
}

.section--form-page {
  padding-top: 28px;
}

.nn-contact-form {
  margin-top: 18px;
}

.nn-contact-form .wpcf7 {
  width: 100%;
}

.nn-contact-form .wpcf7-form {
  display: grid;
  gap: 26px;
}

.nn-contact-form .wpcf7 p {
  margin: 0;
}

.nn-contact-form .wpcf7 br {
  display: none;
}

.nn-contact-form-grid,
.nn-contact-form-grid__cols {
  display: grid;
  gap: 18px;
}

.nn-contact-form-grid__cols {
  grid-template-columns: 1fr;
}

.nn-contact-form-section {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}

.nn-contact-form-section[data-contact-request-only][hidden] {
  display: none !important;
}

.nn-contact-form-section__head {
  display: grid;
  gap: 6px;
}

.nn-contact-form-section__head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.nn-contact-form-section__head p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #5f6b67;
}

.nn-contact-form-field--full {
  grid-column: 1 / -1;
}

.nn-contact-form-field > p,
.nn-contact-form-consent__inner > p,
.nn-contact-form-actions > p {
  margin: 0;
}

.nn-contact-form label {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.nn-contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  flex-basis: 100%;
  margin-top: 2px;
}

.nn-contact-form .wpcf7-form-control {
  width: 100%;
}

.nn-contact-form-label {
  display: inline-block;
  color: #1f2937;
}

.nn-contact-form-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
  padding: 0 6px;
  border-radius: 999px;
  background: #eef6f3;
  color: #1f7a67;
  border: 1px solid #b6d7ce;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.nn-contact-form input[type="text"],
.nn-contact-form input[type="email"],
.nn-contact-form input[type="tel"],
.nn-contact-form input[type="url"],
.nn-contact-form select,
.nn-contact-form textarea {
  width: 100%;
  margin-top: 2px;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.nn-contact-form input[type="text"]:focus,
.nn-contact-form input[type="email"]:focus,
.nn-contact-form input[type="tel"]:focus,
.nn-contact-form input[type="url"]:focus,
.nn-contact-form select:focus,
.nn-contact-form textarea:focus {
  outline: none;
  border-color: rgba(29, 109, 95, 0.6);
  box-shadow: 0 0 0 4px rgba(29, 109, 95, 0.12);
  background: #fff;
}

.nn-contact-form .wpcf7-list-item {
  margin: 0;
}

.nn-contact-form-consent {
  margin-top: -2px;
}

.nn-contact-form-policy {
  display: grid;
  gap: 10px;
}

.nn-contact-form-policy__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #1f2937;
}

.nn-contact-form-policy__box {
  max-height: 220px;
  overflow-y: auto;
  padding: 16px 18px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fafafa;
}

.nn-contact-form-policy__box .nn-prose {
  color: #374151;
  font-size: 12px;
  line-height: 1.8;
}

.nn-contact-form-policy__box .nn-prose > *:first-child {
  margin-top: 0;
}

.nn-contact-form-policy__box .nn-prose > *:last-child {
  margin-bottom: 0;
}

.nn-contact-form-policy__box .nn-prose h2,
.nn-contact-form-policy__box .nn-prose h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.7;
}

.nn-contact-form-policy__box .nn-prose p,
.nn-contact-form-policy__box .nn-prose ul {
  margin: 0 0 10px;
}

.nn-contact-form-policy__box .nn-prose ul {
  padding-left: 1.2em;
}

.nn-contact-form-policy__box .nn-prose li {
  margin-bottom: 6px;
}

.nn-contact-form-consent__inner {
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
}

.nn-contact-form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nn-contact-form .wpcf7-acceptance input[type="checkbox"] {
  margin: 3px 0 0;
  accent-color: #1f7a67;
}

.nn-contact-form-consent .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.8;
  color: #374151;
}

.nn-contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}

.nn-contact-submit {
  min-width: 220px;
  min-height: 48px;
  padding-inline: 24px;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: none;
}

.nn-contact-submit:hover {
  transform: translateY(-1px);
}

.nn-contact-form .wpcf7-spinner {
  margin: 10px 0 0 12px;
}

.nn-contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #b91c1c;
  font-size: 12px;
  line-height: 1.6;
}

.nn-contact-form .wpcf7-response-output {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
}

.nn-contact-policy {
  padding: 36px 40px 40px;
}

@keyframes nnHeroFade {
  0%, 26% { opacity: 0; }
  6%, 20% { opacity: 1; }
  33%, 100% { opacity: 0; }
}

@media (max-width: 1200px) {
  .nn-area-grid,
  .nn-ranking-grid,
  .nn-feature-grid,
  .nn-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nn-about-grid--homepage-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .nn-sticky-card {
    position: static;
  }
}

@media (max-width: 840px) {
  .nn-search-box {
    flex-direction: column;
    align-items: stretch;
    padding-right: 32px;
  }

  .nn-search-box .field:not(.field--condition) {
    flex: 1 1 auto;
  }

  .nn-search-overlap .field--submit {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 16px;
  }

  .nn-search-box--archive,
  .nn-stats,
  .card-grid,
  .nn-article-grid,
  .nn-feature-grid,
  .nn-purpose-grid,
  .nn-info-grid,
  .nn-area-grid,
  .nn-area-grid--compact,
  .site-footer__grid,
  .nn-about-grid,
  .nn-ranking-grid {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-header__actions {
    gap: 10px;
    margin-left: auto;
  }

  .site-nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-header-search__panel {
    right: -58px;
    width: min(320px, calc(100vw - 32px));
  }

  .site-nav__list {
    gap: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__list li + li {
    border-top: 1px solid #f3f4f6;
  }

  .site-nav__list a {
    display: block;
    padding: 14px 4px;
  }

  .site-nav__list li:last-child a {
    margin-top: 10px;
    text-align: center;
  }

  .nn-hero {
    min-height: 560px;
  }

  .nn-hero__inner {
    min-height: 560px;
  }

  .nn-search-overlap {
    margin-top: -48px;
  }

  .field--condition {
    grid-column: auto;
  }

  .nn-condition-group {
    gap: 8px;
  }

  .nn-condition-option {
    font-size: 12px;
    padding: 9px 12px;
  }

  .nn-band .container,
  .nn-section,
  .nn-cta__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .nn-about-intro {
    padding: 28px 24px;
  }

  .nn-about-link-card {
    align-items: flex-start;
    padding: 20px 20px 22px;
  }

  .nn-about-link-card__arrow {
    display: none;
  }

  .nn-about-simple {
    gap: 14px;
  }

  .nn-about-intro-card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .nn-about-intro-card p {
    font-size: 15px;
  }

  .nn-about-feature-item,
  .nn-faq-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .nn-about-feature-item__index,
  .nn-faq-item__badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 14px;
  }

  .nn-faq-item__body h2 {
    font-size: 19px;
  }

  .nn-contact-form-card,
  .nn-contact-policy {
    padding: 28px 24px 30px;
  }

  .article-hero--form-page {
    padding-bottom: 20px;
  }

  .section--form-page {
    padding-top: 20px;
  }

  .nn-contact-form-section {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .nn-contact-form-policy__box {
    max-height: 180px;
    padding: 14px 16px;
  }

  .nn-contact-form-grid__cols {
    grid-template-columns: 1fr;
  }

  .nn-contact-form-actions {
    justify-content: stretch;
  }

  .nn-contact-submit {
    width: 100%;
    min-width: 0;
  }

  .nn-section__heading,
  .nn-ranking-head,
  .nn-detail-meta,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nn-gallery__main img {
    height: 320px;
  }

  .nn-gallery__thumb-strip {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 8px;
  }

  .nn-gallery__nav {
    width: 32px;
    height: 60px;
    font-size: 20px;
  }

  .nn-gallery__thumb {
    flex-basis: calc((100% - 24px) / 3);
  }

  .nn-ranking-list__item {
    grid-template-columns: 32px 1fr;
  }

  .nn-ranking-list__thumb {
    grid-column: 1 / -1;
  }

}
