@charset "UTF-8";
:root {
  --olive-green: #65a30d;
  --olive-dark: #3f6212;
  --olive-green-deep: #4d7c0f;
  --olive-soft: #ecfccb;
  --olive-soft-2: #f8ffe4;
  --olive-surface: #fdfff9;
  --olive-surface-2: #fbfef3;
  --olive-gray: #f8fafc;
  --olive-line: #d7e9b2;
  --olive-line-2: #d4d4d4;
  --olive-text: #101010;
  --olive-text-muted: #6b7280;
  --olive-text-soft: #94a3b8;
  --shadow-card: 0 24px 60px rgba(70, 98, 27, 0.08);
  --shadow-soft: 0 12px 36px rgba(42, 52, 18, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --news-tag-min-width: 7.5rem;
  --container: min(1274px, calc(100% - 48px));
  --header-container: min(1392px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--olive-text);
  background: #fbfef3;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-main {
  overflow-x: clip;
  overflow-y: visible;
}

.js :is(.page-lead,
.home-hero__heading,
.home-hero__copy,
.home-hero__actions .pill-link,
.home-overview__content p,
.home-overview__content .button,
.home-highlight-title,
.home-performance__copy p,
.home-performance__copy .button,
.home-performance__visuals,
.home-performance__badges .home-badge,
.home-award__list li,
.home-award__aside > .button,
.home-award__content p,
.home-news__divider,
.news-list__item,
.news-pagination,
.home-contact__copy,
.home-contact__actions .button,
.home-contact__note,
.about-philosophy__lead,
.about-philosophy h3,
.about-philosophy__body--primary .about-philosophy__group,
.about-philosophy__body--secondary .about-philosophy__group,
.about-banner,
.organization-card,
.disclosure-card,
.performance-intro__visual,
.performance-intro__content h2,
.performance-intro__content h3,
.performance-intro__content p,
.performance-table,
.performance-table__note,
.flow-step,
.performance-actions__note,
.flow-summary,
.performance-actions__period,
.performance-actions .button,
.performance-cta p,
.performance-cta .button,
.news-archive__lead,
.news-filters button,
.form-section > .form-grid,
.form-section > .form-row,
.form-card--contact .form-grid,
.form-confirm__title,
.form-confirm__list,
.form-confirm__text,
.form-check,
.form-submit,
.article-meta,
.article-divider,
.article-card p,
.article-media,
.article-nav > *,
.policy-card__intro,
.policy-section .policy-card__text,
.policy-section .policy-list,
.policy-contact,
.policy-signature) {
  opacity: 0;
  pointer-events: none;
}

body[data-page=contact] :is(.page-lead,
.form-section > .form-grid,
.form-section > .form-row,
.form-card--contact .form-grid,
.form-confirm__title,
.form-confirm__list,
.form-confirm__text,
.form-check,
.form-submit),
body[data-page=performance-form] :is(.page-lead,
.form-section > .form-grid,
.form-section > .form-row,
.form-card--contact .form-grid,
.form-confirm__title,
.form-confirm__list,
.form-confirm__text,
.form-check,
.form-submit) {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  animation: none;
  will-change: auto;
}

.js-scroll-reveal {
  --reveal-x: 0px;
  --reveal-y: 28px;
  --reveal-scale: 0.985;
  --reveal-duration: 1.12s;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  will-change: opacity, transform;
  overflow: visible;
}
.js-scroll-reveal--soft {
  --reveal-y: 22px;
  --reveal-scale: 0.992;
}
.js-scroll-reveal--left {
  --reveal-x: -42px;
  --reveal-y: 14px;
  --reveal-scale: 0.99;
}
.js-scroll-reveal--right {
  --reveal-x: 42px;
  --reveal-y: 14px;
  --reveal-scale: 0.99;
}
.js-scroll-reveal--lift {
  --reveal-y: 36px;
  --reveal-scale: 0.972;
  --reveal-duration: 1.18s;
}
.js-scroll-reveal--float {
  --reveal-y: 18px;
  --reveal-scale: 0.955;
  --reveal-duration: 1s;
  transform-origin: 50% 100%;
}
.js-scroll-reveal--wash {
  --reveal-y: 20px;
  --reveal-scale: 0.992;
  --reveal-duration: 1.24s;
}
.js-scroll-reveal--frame {
  --reveal-y: 18px;
  --reveal-scale: 0.99;
  --reveal-duration: 1.2s;
}
.js .js-scroll-reveal.is-revealed {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  animation: oliveRevealEnter var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s) both;
}

@keyframes oliveRevealEnter {
  from {
    opacity: 0;
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .js .js-scroll-reveal {
    opacity: 1;
    pointer-events: auto;
    filter: none;
    transform: none;
    animation: none;
    will-change: auto;
  }
}
.section-heading {
  text-align: center;
  margin-bottom: 52px;
}
.section-heading__title {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--olive-text);
}
.section-heading__title--green {
  color: var(--olive-dark);
}
.section-heading__subtitle {
  margin: 12px 0 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #8c8c8c;
}
.section-heading__subtitle strong {
  color: var(--olive-green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.button:hover, .button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(59, 91, 16, 0.14);
}
.button--disabled, .button[aria-disabled=true] {
  background: #e5e7eb;
  color: #7b8794;
  border-color: #d1d5db;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}
.button--disabled:hover, .button--disabled:focus-visible, .button[aria-disabled=true]:hover, .button[aria-disabled=true]:focus-visible {
  transform: none;
  box-shadow: none;
}
.button--primary {
  background: var(--olive-green);
  color: #fff;
}
.button--secondary {
  background: #fff;
  color: var(--olive-green);
  border-color: rgba(101, 163, 13, 0.45);
}
.button--white {
  background: #fff;
  color: var(--olive-green);
}
.button--danger {
  background: #ef4444;
  color: #fff;
}
.button--danger-outline {
  background: #fff;
  color: #ef4444;
  border-color: #ef4444;
}
.button--small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.82rem;
}
.button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.75rem;
  line-height: 1;
}
.button:has(.button__icon) {
  --button-side-size: 0px;
  --button-icon-gap: 10px;
  display: inline-grid;
  grid-template-columns: var(--button-side-size) auto var(--button-side-size);
  align-items: center;
  justify-content: center;
  column-gap: var(--button-icon-gap);
}
.button:has(.button__icon) > .button__label, .button:has(.button__icon) > span:not(.button__icon) {
  grid-column: 2;
  text-align: center;
}
.button:has(.button__icon) > .button__icon {
  margin: 0;
  justify-self: center;
}
.button:has(.button__icon):not(:has(.button__icon--arrow)) > .button__icon {
  grid-column: 1;
}
.button:has(.button__icon--arrow) {
  --button-side-size: 7px;
  --button-icon-gap: 16px;
}
.button:has(.button__icon--arrow) > .button__icon--arrow {
  grid-column: 3;
}
.button:has(.button__icon):not(:has(.button__icon--arrow)) {
  display: inline-flex;
  gap: var(--button-icon-gap);
}
.button:has(.button__icon):not(:has(.button__icon--arrow)) > .button__label, .button:has(.button__icon):not(:has(.button__icon--arrow)) > span:not(.button__icon) {
  grid-column: auto;
  text-align: center;
}
.button:has(.button__icon):not(:has(.button__icon--arrow)) > .button__icon {
  grid-column: auto;
  justify-self: auto;
}
.button:has(.button__icon--mail) {
  --button-side-size: 19px;
  --button-icon-gap: 12px;
}
.button:has(.button__icon--phone) {
  --button-side-size: 18px;
  --button-icon-gap: 12px;
}
.button:has(.button__icon--pdf) {
  --button-side-size: 21px;
  --button-icon-gap: 12px;
}
.button:has(.button__icon--apply), .button:has(.button__icon--confirm) {
  --button-side-size: 17px;
  --button-icon-gap: 12px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  min-width: 220px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(101, 163, 13, 0.38);
  background: rgba(255, 255, 255, 0.88);
  color: var(--olive-green);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.pill-link:hover, .pill-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--olive-green);
  box-shadow: 0 10px 24px rgba(76, 109, 21, 0.12);
}

.surface-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 233, 178, 0.7);
  backdrop-filter: blur(16px);
}
.page-home .site-header {
  background: rgba(255, 255, 255, 0.75);
}
.has-scrolled .site-header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(38, 58, 15, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}
.site-header__brand {
  flex: 0 0 auto;
}
.site-header__logo {
  width: clamp(150px, 18vw, 198px);
  height: auto;
}
.site-header__toggle {
  display: none;
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(101, 163, 13, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.site-header__toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--olive-green);
  transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}
.site-header__toggle span:nth-child(1) {
  top: 18px;
  transform: translateX(-50%);
}
.site-header__toggle span:nth-child(2) {
  top: 26px;
  transform: translateX(-50%);
}
.site-header__toggle span:nth-child(3) {
  top: 34px;
  transform: translateX(-50%);
}
.site-header.is-open .site-header__toggle {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(101, 163, 13, 0.34);
}
.site-header.is-open .site-header__toggle span:nth-child(1) {
  top: 26px;
  transform: translateX(-50%) rotate(45deg);
}
.site-header.is-open .site-header__toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .site-header__toggle span:nth-child(3) {
  top: 26px;
  transform: translateX(-50%) rotate(-45deg);
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header__link {
  position: relative;
  color: var(--olive-text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.site-header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: var(--olive-green);
  opacity: 0;
  transform: scaleX(0.65);
  transform-origin: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.site-header__link.is-active {
  color: var(--olive-green);
}
.site-header__link.is-active::after, .site-header__link:hover::after, .site-header__link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}
.site-header__contact {
  margin-left: 8px;
}

.home-hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  padding: 160px 0 140px;
}
.home-hero__media, .home-hero__media::before {
  position: absolute;
  inset: 0;
}
.home-hero__media {
  background: linear-gradient(180deg, rgba(253, 255, 249, 0.32), rgba(253, 255, 249, 0.82)), url("../images/home-hero.jpg") center 34%/cover no-repeat;
}
.home-hero__media::before {
  content: "";
  background: radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.72), transparent 36%), radial-gradient(circle at 20% 14%, rgba(236, 252, 203, 0.52), transparent 30%);
}
.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  justify-items: center;
}
.home-hero__heading {
  margin: 0;
  width: min(100%, 752px);
  text-align: center;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(2.9rem, 7vw, 6.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--olive-green);
  letter-spacing: 0.03em;
}
.home-hero__heading img {
  display: block;
  width: 100%;
  height: auto;
}
.home-hero__heading span {
  font-family: "Caveat", "Zen Maru Gothic", cursive;
  font-size: 1.2em;
  margin: 0 0.06em;
}
.home-hero__copy {
  max-width: 560px;
  margin: 0;
  text-align: center;
  font-size: 1rem;
  line-height: 2;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.home-overview {
  position: relative;
  margin-top: -84px;
}
.home-overview__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 54px;
  padding: 34px;
}
.home-overview__media {
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
}
.home-overview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-overview__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.home-overview__content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.3;
}
.home-overview__content p {
  margin: 0;
  font-size: 20px;
  line-height: 2;
  color: var(--olive-text);
  font-weight: 500;
}

.home-performance {
  padding: 96px 0 120px;
  background: linear-gradient(180deg, #eff8d2 0%, var(--olive-soft-2) 84%);
}
.home-performance__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 64px;
}
.home-performance__copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.35;
}
.home-performance__copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 2;
}
.home-performance__badges {
  display: flex;
  gap: 20px;
  margin: 28px 0 30px;
}

.home-badge {
  flex: 0 1 180px;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 999px;
  border: 1px solid rgba(101, 163, 13, 0.28);
  background: rgba(255, 255, 255, 0.76);
}
.home-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--olive-green);
  border: 1px solid rgba(101, 163, 13, 0.36);
}
.home-badge__label {
  display: block;
  font-size: 0.9rem;
  line-height: 1.6;
}

.home-performance__visuals {
  position: relative;
  min-height: 500px;
}
.home-performance__photo {
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.home-performance__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-performance__photo--large {
  inset: 10px 112px 110px 0;
}
.home-performance__photo--small {
  width: 250px;
  height: 320px;
  right: 0;
  bottom: 22px;
}
.home-performance__ring {
  position: absolute;
  right: 80px;
  top: 68px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  border: 1px solid rgba(101, 163, 13, 0.32);
}

.home-award {
  padding: 108px 0;
  background: var(--olive-surface-2);
}
.home-award__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
}
.home-award__card {
  width: 100%;
  padding: 28px 30px;
  border: 1px solid rgba(101, 163, 13, 0.36);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.home-award__card h3 {
  margin: 0 0 18px;
  font-size: 1.3rem;
  line-height: 1.5;
}
.home-award__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-award__list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.85;
}
.home-award__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid var(--olive-green);
  background: rgba(101, 163, 13, 0.12);
}
.home-award__content {
  display: grid;
  gap: 18px;
}
.home-award__content p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 2;
}

.home-news {
  padding: 108px 0;
  background: var(--olive-gray);
}

.news-list {
  display: grid;
  gap: 16px;
}
.news-list__item {
  display: grid;
  grid-template-columns: 130px 108px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 18px 28px;
  background: #fff;
  border-radius: 14px;
}
.news-list__date {
  font-size: 0.95rem;
  font-weight: 500;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--news-tag-min-width);
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--olive-green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex: 0 0 auto;
}

.news-tag--media {
  background: #7cb518;
}

.news-list__title {
  font-size: 0.98rem;
  line-height: 1.8;
}
.news-list__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--olive-text-soft);
  font-weight: 700;
}

.home-contact {
  padding: 96px 0 118px;
  background: linear-gradient(180deg, #eef7cf 0%, #e8f5cf 100%);
}
.home-contact__copy {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.9;
}
.home-contact__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.home-contact__note {
  margin: 18px 0 0;
  text-align: center;
  color: #8c8c8c;
  font-size: 0.82rem;
}

.page-hero {
  padding: 205px 0 88px;
}
.page-hero__title {
  margin: 0;
  text-align: center;
  color: var(--olive-dark);
  font-size: clamp(2rem, 3vw, 48px);
  font-weight: 500;
  line-height: 1.2;
}
.page-hero__copy {
  max-width: 720px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 0.96rem;
  line-height: 2;
}

.breadcrumb {
  padding: 14px 0 24px;
  border-top: 1px solid var(--olive-line);
  font-size: 0.82rem;
  color: var(--olive-text-soft);
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb__separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.55em;
}
.breadcrumb__current {
  color: #838383;
}

.page-section {
  padding: 80px 0;
}
.page-section--gray {
  background: var(--olive-gray);
}
.page-section--soft {
  background: var(--olive-soft-2);
}
.page-section--tint {
  background: #fbfef3;
}

.page-lead {
  max-width: 683px;
  margin: 0 auto;
  text-align: center;
  color: #101010;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.about-philosophy {
  display: grid;
  justify-items: center;
}
.about-philosophy__lead {
  margin: 0;
  text-align: center;
  font-size: 36px;
  line-height: 60px;
  font-weight: 700;
}
.about-philosophy h3 strong {
  color: var(--olive-green);
}
.about-philosophy__body {
  display: grid;
  justify-self: stretch;
  width: 100%;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.about-philosophy__body--primary {
  margin-top: 84px;
}
.about-philosophy__body--secondary {
  margin-top: 80px;
}
.about-philosophy__body p {
  margin: 0;
  line-height: 2em;
}
.about-philosophy__body p.is-highlight {
  color: var(--olive-green);
}
.about-philosophy__group {
  display: grid;
  gap: 0;
}
.about-philosophy__group + .about-philosophy__group {
  margin-top: 40px;
}
.about-philosophy__body .about-philosophy__signature {
  margin-top: 40px;
  text-align: right;
}

.about-banner {
  overflow: hidden;
  width: 100%;
  margin-top: 84px;
  border-radius: 20px;
  aspect-ratio: 1400/515;
}
.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section-title {
  margin: 0;
  text-align: center;
  color: var(--olive-text);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.about-section-title--large {
  margin-bottom: 84px;
}
.about-section-title--small {
  margin-bottom: 54px;
  font-size: 30px;
  line-height: 1.35;
}

.organization-card {
  width: min(876px, 100%);
  margin: 0 auto;
  padding: 27px 56px 27px 72px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.definition-table {
  margin: 0;
}
.definition-table__row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: 147px;
  align-items: center;
  padding: 31px 0 35px;
}
.definition-table__row + .definition-table__row {
  border-top: 1px solid rgba(107, 114, 128, 0.16);
}
.definition-table__row--compact dd {
  max-width: 533px;
  line-height: 30px;
}
.definition-table dt {
  color: var(--olive-green);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
.definition-table dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  gap: 7px;
}
.definition-table__stack {
  display: grid;
  gap: 0;
}
.definition-table__stack p {
  margin: 0;
}
.definition-table__business {
  display: grid;
  gap: 10px;
}
.definition-table__business p {
  margin: 0;
}
.definition-table__business-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.definition-table__business-list li {
  display: grid;
  grid-template-columns: 2.4em minmax(0, 1fr);
  align-items: start;
}
.definition-table__business-label {
  display: inline-block;
}

.disclosure-card {
  width: min(876px, 100%);
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  background: #f9f9f9;
  border: 1px solid #c5c5c5;
  border-radius: 10px;
}
.disclosure-card__item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 28px;
  min-height: 64px;
  padding: 0 28px 0 26px;
  background: #fff;
}
.disclosure-card__item span:nth-child(2) {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}
.disclosure-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 23px;
}
.disclosure-card__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 15px;
}
.disclosure-card__note {
  margin: 0;
  padding: 12px 28px 14px;
  color: var(--olive-text-soft);
  font-size: 12px;
  line-height: 30px;
}

body.page-about .page-main {
  background: #fbfef3;
}
body.page-about .page-main .container {
  width: min(1400px, 100% - 48px);
}
body.page-about .page-hero {
  padding: 205px 0 88px;
}
body.page-about .breadcrumb {
  padding: 0;
  border-top-color: var(--olive-line);
}
body.page-about .breadcrumb .container {
  min-height: 54px;
  padding-top: 0;
  font-size: 14px;
  line-height: 54px;
}
body.page-about .about-intro {
  padding: 82px 0 108px;
}
body.page-about .about-organization {
  padding: 98px 0 108px;
  background: var(--olive-soft-2);
}
body.page-about .about-disclosure {
  padding: 100px 0 92px;
  background: #fbfef3;
}

body[data-page=performance] .page-main {
  background: #fbfef3;
}

body[data-page=news] .page-main {
  background: #fbfef3;
}
body[data-page=news] .page-hero__title {
  color: var(--olive-dark);
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
body[data-page=news] .breadcrumb {
  padding: 0;
}
body[data-page=news] .breadcrumb .container {
  min-height: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #101010;
}
body[data-page=news] .breadcrumb__current {
  color: #838383;
}
body[data-page=news] .page-section {
  padding: 32px 0 111px;
}
body[data-page=news] .news-archive {
  max-width: 1024px;
  margin: 0 auto;
}
body[data-page=news] .news-archive__lead {
  margin: 0 0 57px;
  text-align: center;
  color: #101010;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=news] .news-filters {
  justify-content: center;
  gap: 25px;
  margin-bottom: 70px;
}
body[data-page=news] .news-filters button {
  width: auto;
  height: 60px;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 30px;
  border: 1px solid #9f9f9f;
  background: #fff;
  box-shadow: none;
  color: #101010;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=news] .news-filters button.is-active {
  border-color: var(--olive-green);
  background: var(--olive-green);
  color: #fff;
}
body[data-page=news] .news-list {
  display: grid;
  gap: 20px;
}
body[data-page=news] .news-list__item {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) 32px;
  align-items: center;
  gap: 20px;
  min-height: 104px;
  padding: 0 16px 0 32px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
body[data-page=news] .news-list__item.is-filter-hidden {
  display: none !important;
}
body[data-page=news] .news-list__item:hover, body[data-page=news] .news-list__item:focus-visible {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}
body[data-page=news] .news-list__meta {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
  flex-wrap: nowrap;
}
body[data-page=news] .news-list__date {
  color: #101010;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  white-space: nowrap;
}
body[data-page=news] .news-list__title {
  color: #101010;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body[data-page=news] .news-list__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #f3f6fb;
  color: #94a3b8;
}
body[data-page=news] .news-list__arrow svg {
  width: 7px;
  height: 13px;
}
body[data-page=news] .news-list__item:hover .news-list__arrow, body[data-page=news] .news-list__item:focus-visible .news-list__arrow {
  color: var(--olive-green);
}
body[data-page=news] .news-tag,
body[data-page=news] .news-tag--media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: var(--news-tag-min-width);
  height: 37px;
  min-height: 37px;
  padding: 0 10px;
  border-radius: 18.5px;
  background: var(--olive-green);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex: 0 0 auto;
}
body[data-page=news] .news-pagination {
  justify-content: center;
  gap: 20px;
  margin-top: 42px;
}
body[data-page=news] .news-pagination a,
body[data-page=news] .news-pagination span {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #9f9f9f;
  background: #fff;
  color: #101010;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  box-shadow: none;
}
body[data-page=news] .news-pagination .is-current {
  border-color: var(--olive-green);
  background: var(--olive-green);
  color: #fff;
}
body[data-page=news] .news-pagination__arrow {
  color: #94a3b8;
}
body[data-page=news] .news-pagination__arrow svg {
  width: 7px;
  height: 13px;
}
body[data-page=news] .news-pagination__arrow--prev svg {
  transform: rotate(180deg);
}

.performance-intro-section {
  background: #fbfef3;
  padding: 80px 0;
}

.performance-intro {
  display: grid;
  grid-template-columns: minmax(0, 543px) minmax(0, 662px);
  justify-content: center;
  gap: 64px;
  align-items: center;
}
.performance-intro__visual {
  display: block;
  width: 100%;
  height: auto;
}
.performance-intro__content {
  max-width: 662px;
}
.performance-intro__content h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 2.3vw, 36px);
  line-height: 1.39;
  letter-spacing: 0.01em;
}
.performance-intro__content h3 {
  margin: 0 0 26px;
  font-size: clamp(1.35rem, 1.7vw, 26px);
  line-height: 1.92;
  letter-spacing: 0.01em;
  color: var(--olive-green);
}
.performance-intro__content p {
  margin: 0;
  max-width: 585px;
  font-size: 16px;
  line-height: 2.5;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.performance-table {
  background: #f8ffea;
  border: 1px solid rgba(221, 230, 202, 0.9);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(92, 111, 45, 0.12);
}
.performance-table__header, .performance-table__row {
  display: grid;
  grid-template-columns: minmax(250px, 28.5%) minmax(0, 1fr);
}
.performance-table__header > div {
  padding: 15px 32px 16px;
  background: var(--olive-green);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
}
.performance-table__header > div + div {
  border-left: 2px solid rgba(255, 255, 255, 0.96);
}
.performance-table__row > div {
  padding: 38px 48px 34px;
  border-top: 2px solid rgba(255, 255, 255, 0.94);
}
.performance-table__row > div:first-child {
  display: flex;
  align-items: center;
  padding: 38px 44px;
  border-right: 2px solid rgba(255, 255, 255, 0.94);
}
.performance-table__row:first-of-type > div {
  background: #fbfef3;
}
.performance-table__row:last-of-type > div {
  background: #f1f4e4;
  padding-top: 36px;
  padding-bottom: 36px;
}
.performance-table__row p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 500;
}
.performance-table__row > div:first-child p {
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
}
.performance-table__type {
  width: 100%;
}
.performance-table__subnote {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: #55595f;
}
.performance-table__step {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  margin-bottom: 28px;
}
.performance-table__step:last-child {
  margin-bottom: 0;
}
.performance-table__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 999px;
  border: 1px solid rgba(101, 163, 13, 0.72);
  color: var(--olive-green);
  font-family: "Caveat", "Noto Sans JP", cursive;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.1em;
  background-color: #fff;
  padding-right: 2px;
}
.performance-table__step p strong {
  display: block;
  margin-bottom: 4px;
  color: var(--olive-green);
  font-size: 20px;
  line-height: 40px;
  font-weight: 700;
}
.performance-table__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.performance-table__list li {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}
.performance-table__list li + li {
  margin-top: 6px;
}
.performance-table__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.performance-table__note {
  margin: 24px 0 0;
  color: #55595f;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
}
.performance-table__note-title {
  display: block;
  margin: 0 0 10px;
  color: var(--olive-text);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 274px));
  justify-content: center;
  gap: 48px;
  margin-top: 58px;
}

.flow-step {
  min-height: 257px;
  padding: 35px 20px 26px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.flow-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 999px;
  background: var(--olive-green);
  color: #fff;
  font-family: "Caveat", "Noto Sans JP", cursive;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.1em;
  padding-top: 2px;
}
.flow-step h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  line-height: 40px;
}
.flow-step p {
  margin: 0;
  font-size: 16px;
  line-height: 23px;
  text-align: left;
  font-weight: 500;
}

.flow-summary {
  width: min(100%, 1238px);
  min-height: 72px;
  margin: 27px auto 0;
  padding: 18px 24px;
  background: linear-gradient(90deg, #f8ffea, #ebf6cd);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 0;
  text-align: center;
  font-size: 20px;
  line-height: 23px;
  font-weight: 500;
}
.flow-summary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 13px;
  flex: 0 0 14px;
}
.flow-summary__icon svg {
  display: block;
  width: 14px;
  height: 13px;
}

.performance-cta {
  padding: 96px 0 99px;
  margin-top: 79px;
  background: #e8f5cf;
  text-align: center;
}
.performance-cta h2 {
  margin: 0 0 19px;
  font-size: clamp(2rem, 2.3vw, 36px);
  line-height: 1.33;
  color: var(--olive-dark);
}
.performance-cta p {
  margin: 0 0 39px;
  font-size: 18px;
  line-height: 1.84;
  font-weight: 500;
  color: var(--olive-dark);
}

.performance-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 27px;
}
.performance-actions__note {
  margin: 12px 0 0;
  color: #55595f;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
}
.performance-actions__period {
  margin: 17px 0 0;
  color: #55595f;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  text-align: center;
}
.performance-actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 338px);
  min-height: 68px;
  padding-inline: 24px;
  font-size: 18px;
  letter-spacing: 0.01em;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
}

body[data-page=performance] .button--danger-outline .button__icon--pdf path {
  fill: #ef4444;
}
body[data-page=performance] .button__icon--pdf,
body[data-page=performance] .button__icon--apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
  flex: 0 0 auto;
}
body[data-page=performance] .button__icon--pdf {
  width: 21px;
  height: 22px;
}
body[data-page=performance] .button__icon--apply {
  width: 17px;
  height: 18px;
}
body[data-page=performance] .button__icon--pdf svg {
  width: 21px;
  height: 22px;
}
body[data-page=performance] .button__icon--apply svg {
  width: 17px;
  height: 18px;
}
body[data-page=performance] .performance-cta .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 338px);
  min-height: 68px;
  padding-inline: 24px;
  border: 0;
  border-radius: 60.5px;
  background: #fff;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  line-height: 40px;
  letter-spacing: 0.01em;
}
body[data-page=performance] .performance-cta .button.button--primary {
  border: 1px solid transparent;
  background: var(--olive-green);
  color: #fff;
}
body[data-page=performance] .performance-cta .button:hover,
body[data-page=performance] .performance-cta .button:focus-visible {
  transform: none;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
}
body[data-page=performance] .performance-cta .button.button--primary:hover,
body[data-page=performance] .performance-cta .button.button--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(59, 91, 16, 0.14);
}
body[data-page=performance] .performance-cta .button__icon--apply path {
  fill: #65a30d;
}
body[data-page=performance] .performance-cta .button.button--primary .button__icon--apply path {
  fill: #fff;
}
body[data-page=performance] .page-main {
  background: #fbfef3;
}
body[data-page=performance] .page-section--soft {
  padding-top: 98px;
  padding-bottom: 98px;
}
body[data-page=performance] .page-section--tint:last-of-type {
  padding-top: 80px;
  padding-bottom: 0;
}
body[data-page=performance] .section-heading {
  margin-bottom: 50px;
}
body[data-page=performance] .section-heading__title {
  font-size: 48px;
  line-height: 40px;
  letter-spacing: 0.01em;
}

body[data-page=performance-form] .page-main,
body[data-page=news-post] .page-main,
body[data-page=contact] .page-main,
body[data-page=privacy] .page-main {
  background: #fbfef3;
}
body[data-page=performance-form] .page-hero__title,
body[data-page=news-post] .page-hero__title,
body[data-page=contact] .page-hero__title,
body[data-page=privacy] .page-hero__title {
  color: var(--olive-dark);
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
body[data-page=performance-form] .breadcrumb,
body[data-page=news-post] .breadcrumb,
body[data-page=contact] .breadcrumb,
body[data-page=privacy] .breadcrumb {
  padding: 0;
}
body[data-page=performance-form] .breadcrumb .container,
body[data-page=news-post] .breadcrumb .container,
body[data-page=contact] .breadcrumb .container,
body[data-page=privacy] .breadcrumb .container {
  min-height: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #101010;
}
body[data-page=performance-form] .breadcrumb__current,
body[data-page=news-post] .breadcrumb__current,
body[data-page=contact] .breadcrumb__current,
body[data-page=privacy] .breadcrumb__current {
  color: #101010;
}

body[data-page=performance-form] .form-card,
body[data-page=contact] .form-card {
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
body[data-page=performance-form] .form-section,
body[data-page=contact] .form-section {
  margin-bottom: 54px;
}
body[data-page=performance-form] .form-section:last-child,
body[data-page=contact] .form-section:last-child {
  margin-bottom: 0;
}
body[data-page=performance-form] .form-section__title,
body[data-page=contact] .form-section__title {
  margin-bottom: 20px;
  padding-bottom: 8px;
  color: var(--olive-green);
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=performance-form] .form-label,
body[data-page=contact] .form-label {
  color: #101010;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=performance-form] .form-hint,
body[data-page=contact] .form-hint {
  margin-top: 0;
  color: #7e7e7e;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.01em;
}
body[data-page=performance-form] .form-hint--textarea,
body[data-page=contact] .form-hint--textarea {
  margin-top: 2px;
}
body[data-page=performance-form] .form-field,
body[data-page=performance-form] .form-select,
body[data-page=performance-form] .form-textarea,
body[data-page=performance-form] .form-number,
body[data-page=contact] .form-field,
body[data-page=contact] .form-select,
body[data-page=contact] .form-textarea,
body[data-page=contact] .form-number {
  min-height: 50px;
  padding: 10px 14px;
  border-color: #cbd5e1;
  border-radius: 3px;
  background: #f8fafc;
  color: #101010;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=performance-form] .form-select,
body[data-page=contact] .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23101010' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 10px 6px;
  padding-right: 40px;
}
body[data-page=performance-form] .form-textarea,
body[data-page=contact] .form-textarea {
  min-height: 216px;
  resize: vertical;
}
body[data-page=performance-form] .form-radio,
body[data-page=performance-form] .form-check,
body[data-page=contact] .form-radio,
body[data-page=contact] .form-check {
  gap: 8px;
  color: #101010;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=performance-form] .form-radio input,
body[data-page=performance-form] .form-check input,
body[data-page=contact] .form-radio input,
body[data-page=contact] .form-check input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--olive-green);
}
body[data-page=performance-form] .form-confirm,
body[data-page=contact] .form-confirm {
  max-width: 739px;
  margin: 36px auto 0;
  padding: 12px 20px 18px;
  border-color: rgba(101, 163, 13, 0.9);
  border-radius: 10px;
  background: #fdfff9;
}
body[data-page=performance-form] .form-confirm__title,
body[data-page=contact] .form-confirm__title {
  margin-bottom: 8px;
  color: #101010;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=performance-form] .form-confirm__list,
body[data-page=contact] .form-confirm__list {
  gap: 0;
  margin-bottom: 14px;
  color: #7e7e7e;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.01em;
}
body[data-page=performance-form] .form-confirm__list li,
body[data-page=contact] .form-confirm__list li {
  position: relative;
  padding-left: 18px;
}
body[data-page=performance-form] .form-confirm__list li::before,
body[data-page=contact] .form-confirm__list li::before {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
}
body[data-page=performance-form] .form-confirm__text,
body[data-page=contact] .form-confirm__text {
  margin: 0 0 12px;
  color: #7e7e7e;
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 0.01em;
}
body[data-page=performance-form] .form-confirm .form-check,
body[data-page=contact] .form-confirm .form-check {
  justify-content: center;
  padding-top: 14px;
  border-top: 1px solid rgba(101, 163, 13, 0.36);
  font-size: 12px;
  line-height: 30px;
}
body[data-page=performance-form] .form-submit,
body[data-page=contact] .form-submit {
  margin-top: 35px;
}
body[data-page=performance-form] .form-submit .button,
body[data-page=contact] .form-submit .button {
  min-height: 68px;
  border-radius: 60.5px;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

body[data-page=performance-form] .page-section {
  padding: 38px 0 124px;
}
body[data-page=performance-form] .page-lead {
  margin-bottom: 58px;
}
body[data-page=performance-form] .form-card {
  padding: 44px 68px 48px;
}
body[data-page=performance-form] .form-card > .form-section > .form-grid {
  gap: 24px;
}
body[data-page=performance-form] .form-row {
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
}
body[data-page=performance-form] #postal-code {
  width: 110px;
}
body[data-page=performance-form] .form-date-grid {
  gap: 18px;
}
body[data-page=performance-form] .form-date-grid .form-inline {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) max-content max-content;
  gap: 8px 14px;
  align-items: center;
}
body[data-page=performance-form] .form-date-grid .form-inline > span:first-child {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}
body[data-page=performance-form] .form-date-grid input[type=date] {
  width: 100%;
  min-width: 0;
}
body[data-page=performance-form] .form-date-grid .form-radio .wpcf7-form-control {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 18px;
  row-gap: 10px;
}
body[data-page=performance-form] .form-row > .form-grid .wpcf7-form-control.form-radio {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 18px;
  row-gap: 12px;
}
body[data-page=performance-form] .form-row > .form-grid .wpcf7-form-control.form-radio .wpcf7-list-item label {
  gap: 10px;
}
body[data-page=performance-form] .form-headcount {
  max-width: 250px;
  gap: 20px;
}
body[data-page=performance-form] .form-headcount__row {
  grid-template-columns: 90px 115px auto;
  gap: 16px;
}
body[data-page=performance-form] .form-headcount__row:last-child {
  padding-top: 8px;
  border-top: 1px solid rgba(148, 163, 184, 0.34);
}
body[data-page=performance-form] .form-number {
  text-align: center;
}
body[data-page=performance-form] [data-headcount-total] {
  color: #101010;
}
body[data-page=performance-form] .form-confirm {
  max-width: min(100%, 1440px);
  margin-top: 52px;
  padding: 48px 56px 44px;
  border-width: 2px;
  border-color: rgba(101, 163, 13, 0.82);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(253, 255, 249, 0.98) 0%, rgba(248, 255, 228, 0.94) 100%);
  box-shadow: 0 18px 38px rgba(76, 109, 21, 0.08);
}
body[data-page=performance-form] .form-confirm__title {
  margin-bottom: 30px;
  color: #101010;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.02em;
}
body[data-page=performance-form] .form-confirm__list {
  width: min(100%, 954px);
  margin: 0 auto 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(101, 163, 13, 0.36);
  justify-items: stretch;
}
body[data-page=performance-form] .form-confirm__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-left: 0;
  text-align: center;
  color: #7e7e7e;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;
}
body[data-page=performance-form] .form-confirm__list li::before {
  position: static;
  margin-right: 0;
  font-size: 1em;
  line-height: 1;
}
body[data-page=performance-form] .form-confirm__checks {
  display: grid;
  width: min(100%, 620px);
  margin: 0 auto;
  gap: 22px;
}
body[data-page=performance-form] .form-confirm .form-check {
  display: block;
  width: 100%;
  padding-top: 0;
  border-top: 0;
  text-align: left;
}
body[data-page=performance-form] .form-confirm .form-check + .form-check {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}
body[data-page=performance-form] .form-confirm .form-check span {
  text-align: left;
}
body[data-page=performance-form] .form-confirm .form-check .wpcf7-form-control-wrap,
body[data-page=performance-form] .form-confirm .form-check .wpcf7-list-item,
body[data-page=performance-form] .form-confirm .form-check .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 16px;
}
body[data-page=performance-form] .form-confirm .form-check .wpcf7-form-control-wrap,
body[data-page=performance-form] .form-confirm .form-check .wpcf7-list-item,
body[data-page=performance-form] .form-confirm .form-check .wpcf7-list-item label,
body[data-page=performance-form] .form-confirm .form-check .wpcf7-list-item-label {
  width: 100%;
}
body[data-page=performance-form] .form-confirm .form-check .wpcf7-list-item-label {
  display: block;
  min-width: 0;
  color: #101010;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.01em;
}
body[data-page=performance-form] .form-confirm .form-check input {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}
body[data-page=performance-form] .form-submit {
  margin-top: 70px;
  text-align: center;
}
body[data-page=performance-form] .form-submit .button,
body[data-page=performance-form] .form-submit .form-submit__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 338px);
  min-height: 68px;
  padding: 0 24px;
  border: 0;
  border-radius: 60.5px;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  background-image: none;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
}
body[data-page=performance-form] .form-submit .button > .button__label,
body[data-page=performance-form] .form-submit .form-submit__button > .button__label,
body[data-page=performance-form] .form-submit .button > span:not(.button__icon),
body[data-page=performance-form] .form-submit .form-submit__button > span:not(.button__icon) {
  min-width: 0;
  text-align: center;
}
body[data-page=performance-form] .form-submit .form-submit__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}
body[data-page=performance-form] .olivecare-fluent-form {
  padding: 44px 68px 48px;
}
body[data-page=performance-form] .olivecare-fluent-form .ff-btn-submit {
  min-height: 68px;
  width: 338px;
  border-radius: 60.5px;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=performance-form] .button__icon--confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 18px;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
  flex: 0 0 17px;
}
body[data-page=performance-form] .button__icon--confirm svg {
  width: 17px;
  height: 18px;
}

body[data-page=contact] .page-section {
  padding: 58px 0 91px;
}
body[data-page=contact] .page-lead {
  margin-bottom: 58px;
}
body[data-page=contact] .form-card {
  padding: 48px 68px 54px;
}
body[data-page=contact] .form-card > .form-grid {
  gap: 26px;
}
body[data-page=contact] .form-row {
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
}
body[data-page=contact] .form-confirm--policy {
  margin-top: 38px;
}
body[data-page=contact] .form-confirm--policy .form-check {
  width: 100%;
  justify-content: center;
  text-align: center;
}
body[data-page=contact] .form-confirm--policy .form-check span {
  text-align: center;
}
body[data-page=contact] .form-submit .button {
  width: 257px;
}
body[data-page=contact] .olivecare-fluent-form {
  padding: 48px 68px 54px;
}
body[data-page=contact] .olivecare-fluent-form .ff-btn-submit {
  width: 257px;
}

body.page-contact-confirm .form-confirm--policy .form-confirm__text,
body.page-performance-form-confirm .form-confirm--policy .form-confirm__text {
  text-align: center;
}
body.page-contact-confirm .form-submit--confirm .wpcf7-previous,
body.page-contact-confirm .form-submit--confirm input.wpcf7-previous,
body.page-contact-confirm .form-submit--confirm button.wpcf7-previous,
body.page-contact-confirm .form-submit--confirm .wpcf7-previous.action-button,
body.page-performance-form-confirm .form-submit--confirm .wpcf7-previous,
body.page-performance-form-confirm .form-submit--confirm input.wpcf7-previous,
body.page-performance-form-confirm .form-submit--confirm button.wpcf7-previous,
body.page-performance-form-confirm .form-submit--confirm .wpcf7-previous.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid #c5c5c5;
  background: #f3f4f6;
  color: #101010;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
body.page-contact-confirm .form-submit--confirm .wpcf7-previous:hover,
body.page-contact-confirm .form-submit--confirm .wpcf7-previous:focus-visible,
body.page-contact-confirm .form-submit--confirm input.wpcf7-previous:hover,
body.page-contact-confirm .form-submit--confirm input.wpcf7-previous:focus-visible,
body.page-contact-confirm .form-submit--confirm button.wpcf7-previous:hover,
body.page-contact-confirm .form-submit--confirm button.wpcf7-previous:focus-visible,
body.page-contact-confirm .form-submit--confirm .wpcf7-previous.action-button:hover,
body.page-contact-confirm .form-submit--confirm .wpcf7-previous.action-button:focus-visible,
body.page-performance-form-confirm .form-submit--confirm .wpcf7-previous:hover,
body.page-performance-form-confirm .form-submit--confirm .wpcf7-previous:focus-visible,
body.page-performance-form-confirm .form-submit--confirm input.wpcf7-previous:hover,
body.page-performance-form-confirm .form-submit--confirm input.wpcf7-previous:focus-visible,
body.page-performance-form-confirm .form-submit--confirm button.wpcf7-previous:hover,
body.page-performance-form-confirm .form-submit--confirm button.wpcf7-previous:focus-visible,
body.page-performance-form-confirm .form-submit--confirm .wpcf7-previous.action-button:hover,
body.page-performance-form-confirm .form-submit--confirm .wpcf7-previous.action-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(107, 114, 128, 0.14);
  border-color: #9ca3af;
}

body[data-page=news-post] .page-section {
  padding: 63px 0 183px;
}
body[data-page=news-post] .article-card {
  max-width: 1274px;
  padding: 54px 74px 40px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
body[data-page=news-post] .article-meta {
  gap: 18px;
  margin-bottom: 19px;
  color: #101010;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=news-post] .article-meta .news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: var(--news-tag-min-width);
  height: 37px;
  min-height: 37px;
  padding: 0 10px;
  border-radius: 18.5px;
  background: var(--olive-green);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex: 0 0 auto;
}
body[data-page=news-post] .article-title {
  color: #101010;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=news-post] .article-divider {
  margin: 52px 0 39px;
  background: rgba(156, 163, 175, 0.38);
}
body[data-page=news-post] .article-card p {
  margin-bottom: 44px;
  color: #101010;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=news-post] .article-media {
  height: 607px;
  margin: 0 0 44px;
  background: #d9d9d9;
}
body[data-page=news-post] .article-nav {
  grid-template-columns: 1fr 160px 1fr;
  gap: 20px;
  margin-top: 74px;
}
body[data-page=news-post] .article-nav__side {
  gap: 12px;
  color: #101010;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=news-post] .article-nav__side--next {
  justify-self: end;
}
body[data-page=news-post] .article-nav__circle {
  width: 50px;
  height: 50px;
  border-color: #c5c5c5;
  color: #94a3b8;
}
body[data-page=news-post] .article-nav__circle svg {
  width: 7px;
  height: 13px;
}
body[data-page=news-post] .article-nav__circle--prev svg {
  transform: rotate(180deg);
}
body[data-page=news-post] .article-nav__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  min-height: 60px;
  border-radius: 30px;
  border: 1px solid #9f9f9f;
  background: #fff;
  color: #101010;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=news-post] .article-nav__side:hover .article-nav__circle, body[data-page=news-post] .article-nav__side:focus-visible .article-nav__circle, body[data-page=news-post] .article-nav__back:hover, body[data-page=news-post] .article-nav__back:focus-visible {
  border-color: var(--olive-green);
  color: var(--olive-green);
}

body[data-page=privacy] .breadcrumb__current {
  color: #838383;
}
body[data-page=privacy] .page-section {
  padding: 117px 0 86px;
}
body[data-page=privacy] .policy-card {
  max-width: 876px;
  padding: 44px 40px 46px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
body[data-page=privacy] .policy-card__intro, body[data-page=privacy] .policy-card__text {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
}
body[data-page=privacy] .policy-card__intro {
  color: #101010;
}
body[data-page=privacy] .policy-card__text {
  color: #101010;
}
body[data-page=privacy] .policy-section {
  padding: 22px 0 23px;
  border-top: 1px solid rgba(156, 163, 175, 0.38);
}
body[data-page=privacy] .policy-section:first-of-type {
  margin-top: 32px;
}
body[data-page=privacy] .policy-section__title {
  margin-bottom: 10px;
  color: var(--olive-dark);
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page=privacy] .policy-section .policy-card__text,
body[data-page=privacy] .policy-section .policy-list {
  padding-left: 2.6em;
}
body[data-page=privacy] .policy-list {
  gap: 0;
  color: #101010;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
}
body[data-page=privacy] .policy-list li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
body[data-page=privacy] .policy-section .policy-card__text + .policy-card__text {
  margin-top: 10px;
}
body[data-page=privacy] .policy-contact {
  max-width: 792px;
  margin-top: 26px;
  padding: 14px 26px 18px;
  border: 1px solid rgba(101, 163, 13, 0.9);
  border-radius: 10px;
  background: #fdfff9;
}
body[data-page=privacy] .policy-contact p:first-child {
  color: #101010;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}
body[data-page=privacy] .policy-contact p:not(:first-child) {
  color: #101010;
  font-size: 14px;
  line-height: 25px;
}
body[data-page=privacy] .policy-signature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 19px;
  align-items: start;
  margin-top: 24px;
  color: #101010;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.01em;
}
body[data-page=privacy] .policy-signature p {
  margin: 0;
}
body[data-page=privacy] .policy-signature p:first-child {
  max-width: 407px;
}
body[data-page=privacy] .policy-signature p:last-child {
  width: 100%;
  max-width: 407px;
  margin-top: 99px;
  justify-self: end;
  width: 100%;
  text-align: right;
}

.form-card {
  max-width: 876px;
  margin: 0 auto;
  padding: 46px 46px 48px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.form-section {
  margin-bottom: 38px;
}
.form-section:last-child {
  margin-bottom: 0;
}
.form-section__title {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(101, 163, 13, 0.24);
  color: var(--olive-green);
  font-size: 1.1rem;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-textarea-wrap {
  display: grid;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.form-label {
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.8;
}

.form-hint {
  display: block;
  margin-top: 8px;
  color: #7e7e7e;
  font-size: 0.75rem;
  line-height: 1.6;
}
.form-hint.is-error {
  color: #b91c1c;
}

.form-field,
.form-select,
.form-textarea,
.form-number {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #f8fafc;
  color: var(--olive-text);
}
.form-field::placeholder,
.form-select::placeholder,
.form-textarea::placeholder,
.form-number::placeholder {
  color: #949494;
}

.form-textarea {
  min-height: 188px;
}

.form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-radio,
.form-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.form-radio input,
.form-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--olive-green);
}

.form-date-grid {
  display: grid;
  gap: 10px;
}

.form-headcount {
  display: grid;
  gap: 10px;
}
.form-headcount__row {
  display: grid;
  grid-template-columns: 120px 90px 28px;
  gap: 10px;
  align-items: center;
}

.form-confirm {
  padding: 22px 26px;
  border: 1px solid rgba(101, 163, 13, 0.46);
  border-radius: 10px;
  background: var(--olive-surface);
}
.form-confirm__title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
}
.form-confirm__text {
  margin: 0 0 14px;
  color: #7e7e7e;
  font-size: 0.875rem;
  line-height: 1.75;
}
.form-confirm__text a {
  color: var(--olive-green);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}
.form-confirm__list {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  color: #7e7e7e;
  font-size: 0.8rem;
  line-height: 1.75;
}
.form-confirm__list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--olive-green);
  font-weight: 700;
}

.form-check a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.form-submit {
  margin-top: 30px;
  text-align: center;
}

.form-confirmation {
  display: grid;
  gap: 0;
}
.form-confirmation__row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(101, 163, 13, 0.16);
}
.form-confirmation__row:first-child {
  padding-top: 0;
}
.form-confirmation__label {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.8;
}
.form-confirmation__value {
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #f8fafc;
  color: var(--olive-text);
  font-size: 0.95rem;
  line-height: 1.8;
  word-break: break-word;
}

.form-submit--confirm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.olivecare-form-embed .wpcf7 {
  margin: 0;
}
.olivecare-form-embed .wpcf7 form {
  margin: 0;
}
.olivecare-form-embed .wpcf7-form-control-wrap {
  display: block;
}
.olivecare-form-embed .form-radio .wpcf7-form-control-wrap,
.olivecare-form-embed .form-check .wpcf7-form-control-wrap {
  display: inline-flex;
  align-items: center;
}
.olivecare-form-embed .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  color: #b91c1c;
  font-size: 0.75rem;
  line-height: 1.6;
}
.olivecare-form-embed .wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 14px 18px !important;
  border-radius: 10px;
  border: 1px solid rgba(101, 163, 13, 0.34) !important;
  background: var(--olive-surface);
  color: var(--olive-dark);
  font-size: 0.94rem;
  line-height: 1.8;
}
.olivecare-form-embed .wpcf7-spinner {
  margin: 8px 0 0 12px;
}
.olivecare-form-embed .wpcf7-list-item {
  margin: 0;
}
.olivecare-form-embed .form-radio .wpcf7-list-item,
.olivecare-form-embed .form-check .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.olivecare-form-embed .form-radio .wpcf7-list-item label,
.olivecare-form-embed .form-check .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.olivecare-form-embed .form-radio .wpcf7-list-item-label,
.olivecare-form-embed .form-check .wpcf7-list-item-label {
  display: inline-block;
  line-height: 1.4;
}
.olivecare-form-embed .form-radio input,
.olivecare-form-embed .form-check input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--olive-green);
}
.olivecare-form-embed .form-submit--confirm input[type=submit]:not(.button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid rgba(101, 163, 13, 0.45);
  background: #fff;
  color: var(--olive-green);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.olivecare-form-embed .form-submit--confirm input[type=submit]:not(.button):hover,
.olivecare-form-embed .form-submit--confirm input[type=submit]:not(.button):focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(59, 91, 16, 0.14);
  border-color: var(--olive-green);
}
.olivecare-form-embed .form-submit--confirm .wpcf7-spinner {
  display: block;
  flex: 0 0 100%;
  width: 24px;
  margin: 10px auto 0;
}

.olivecare-fluent-form .frm-fluent-form,
.olivecare-fluent-form .fluentform {
  margin: 0;
}
.olivecare-fluent-form .olivecare-form-placeholder {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 28px 24px;
  border: 1px dashed rgba(101, 163, 13, 0.42);
  border-radius: 10px;
  background: var(--olive-surface);
  text-align: center;
}
.olivecare-fluent-form .olivecare-form-placeholder p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}
.olivecare-fluent-form .olivecare-form-placeholder code {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--olive-dark);
  font-size: 0.875rem;
}
.olivecare-fluent-form .ff-message-success,
.olivecare-fluent-form .ff-message-error {
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(101, 163, 13, 0.34);
  background: var(--olive-surface);
  color: var(--olive-dark);
  font-size: 0.94rem;
  line-height: 1.8;
}
.olivecare-fluent-form .ff_errors_list,
.olivecare-fluent-form .ff-el-is-error .text-danger,
.olivecare-fluent-form .error.text-danger {
  margin-top: 8px;
  color: #b91c1c;
  font-size: 0.75rem;
  line-height: 1.6;
}
.olivecare-fluent-form .ff-el-group {
  margin-bottom: 18px;
}
.olivecare-fluent-form .ff-el-group:not(.ff_submit_btn_wrapper):not(.ff-el-section-break) {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.olivecare-fluent-form .ff-el-group:last-child {
  margin-bottom: 0;
}
.olivecare-fluent-form .ff-el-section-break {
  margin: 0 0 38px;
}
.olivecare-fluent-form .ff-el-section-break h3,
.olivecare-fluent-form .ff-el-section-break h4 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(101, 163, 13, 0.24);
  color: var(--olive-green);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
}
.olivecare-fluent-form .ff-el-section-break p {
  margin: 0;
  color: #7e7e7e;
  font-size: 0.875rem;
  line-height: 1.75;
}
.olivecare-fluent-form .ff-el-input--label,
.olivecare-fluent-form .ff-el-input--label label {
  color: var(--olive-text);
  font-size: 0.94rem;
  line-height: 1.8;
  font-weight: 500;
}
.olivecare-fluent-form .ff-el-input--label {
  margin-bottom: 0;
}
.olivecare-fluent-form .ff-el-input--content {
  min-width: 0;
}
.olivecare-fluent-form .ff-el-input--content .ff-t-container {
  display: grid;
  gap: 18px;
}
.olivecare-fluent-form .ff-el-form-control,
.olivecare-fluent-form select.ff-el-form-control,
.olivecare-fluent-form textarea.ff-el-form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #f8fafc;
  color: var(--olive-text);
  box-shadow: none;
}
.olivecare-fluent-form .ff-el-form-control::placeholder,
.olivecare-fluent-form select.ff-el-form-control::placeholder,
.olivecare-fluent-form textarea.ff-el-form-control::placeholder {
  color: #949494;
}
.olivecare-fluent-form .ff-el-form-control:focus,
.olivecare-fluent-form select.ff-el-form-control:focus,
.olivecare-fluent-form textarea.ff-el-form-control:focus {
  border-color: rgba(101, 163, 13, 0.55);
  outline: none;
  box-shadow: 0 0 0 3px rgba(101, 163, 13, 0.12);
  background: #fff;
}
.olivecare-fluent-form textarea.ff-el-form-control {
  min-height: 188px;
}
.olivecare-fluent-form .ff-el-form-help-message {
  margin-top: 8px;
  color: #7e7e7e;
  font-size: 0.75rem;
  line-height: 1.6;
}
.olivecare-fluent-form .ff-el-form-check {
  margin-bottom: 10px;
}
.olivecare-fluent-form .ff-el-form-check:last-child {
  margin-bottom: 0;
}
.olivecare-fluent-form .ff-el-form-check label,
.olivecare-fluent-form .ff-el-form-check-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.olivecare-fluent-form .ff-el-form-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--olive-green);
}
.olivecare-fluent-form .ff_submit_btn_wrapper {
  margin-top: 30px;
  text-align: center;
}
.olivecare-fluent-form .ff-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--olive-green);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.olivecare-fluent-form .ff-btn-submit:hover,
.olivecare-fluent-form .ff-btn-submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(59, 91, 16, 0.14);
}
.olivecare-fluent-form .ff-btn-submit[disabled] {
  background: #e5e7eb;
  color: #7b8794;
  border-color: #d1d5db;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}
.olivecare-fluent-form .js-zip-feedback {
  display: block;
  min-height: 1.6em;
}

.news-archive {
  max-width: 1024px;
  margin: 0 auto;
}

.news-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.news-filters button {
  min-height: 60px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid #9f9f9f;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--olive-text);
}
.news-filters button.is-active {
  background: var(--olive-green);
  border-color: var(--olive-green);
  color: #fff;
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}
.news-pagination a, .news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #c5c5c5;
  background: #fff;
  font-weight: 700;
}
.news-pagination .is-current {
  background: var(--olive-green);
  border-color: var(--olive-green);
  color: #fff;
}

.article-card {
  max-width: 1274px;
  margin: 0 auto;
  padding: 52px 52px 44px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.article-title {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.5;
}

.article-divider {
  margin: 24px 0 28px;
  height: 1px;
  background: rgba(156, 163, 175, 0.44);
}

.article-card p {
  margin: 0 0 28px;
  font-size: 0.95rem;
  line-height: 2.2;
}
.article-card p:last-child {
  margin-bottom: 0;
}

.article-content a {
  color: var(--olive-green);
  text-decoration: underline;
}

.article-placeholder {
  height: 607px;
  margin: 0 0 32px;
  background: #d9d9d9;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 40px auto 0;
}
.article-nav__side {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
}
.article-nav__side--next {
  justify-self: end;
}
.article-nav__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #c5c5c5;
  background: #fff;
}

.policy-card {
  max-width: 876px;
  margin: 0 auto;
  padding: 38px 40px 40px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.policy-card__heading {
  margin: 0 0 22px;
  color: #101010;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 700;
}
.policy-card__intro, .policy-card__text {
  margin: 0;
  color: #7e7e7e;
  font-size: 0.94rem;
  line-height: 2;
}

.policy-section {
  padding: 26px 0;
  border-top: 1px solid rgba(156, 163, 175, 0.38);
}
.policy-section:first-of-type {
  margin-top: 22px;
}
.policy-section__title {
  margin: 0 0 14px;
  color: var(--olive-dark);
  font-size: 1.05rem;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.94rem;
  line-height: 2;
}

.policy-contact {
  margin-top: 28px;
  padding: 18px 24px;
  border: 1px solid rgba(101, 163, 13, 0.46);
  border-radius: 10px;
  background: var(--olive-surface);
}
.policy-contact p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.9;
}

.policy-signature {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  color: #7e7e7e;
  font-size: 0.84rem;
}

.site-footer {
  padding: 82px 0 38px;
  background: var(--olive-dark);
  color: var(--olive-soft);
}
.site-footer__inner {
  width: var(--header-container);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 42px 88px;
}
.site-footer__brand {
  display: grid;
  gap: 6px;
  align-content: start;
}
.site-footer__brand p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.9;
}
.site-footer__logo {
  width: 110px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 36px;
  align-content: start;
}
.site-footer__nav a {
  font-size: 0.9rem;
  line-height: 1.8;
}
.site-footer__bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  margin-top: 12px;
  border-top: 1px solid rgba(236, 252, 203, 0.16);
  font-size: 0.82rem;
  align-items: center;
}

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

@media (max-width: 1100px) {
  .container {
    width: min(100% - 32px, 1080px);
  }
  .performance-intro {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 40px;
  }
  .performance-intro__content h2 {
    font-size: clamp(1.8rem, 2.2vw, 2rem);
  }
  .performance-intro__content h3 {
    font-size: clamp(1.2rem, 1.7vw, 1.45rem);
    line-height: 1.75;
  }
  .performance-intro__content p {
    max-width: none;
    line-height: 2.15;
  }
  .performance-table__header, .performance-table__row {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .performance-table__row > div {
    padding: 36px 32px;
  }
  .performance-table__row > div:first-child {
    padding: 34px 28px;
  }
  .performance-table__step {
    grid-template-columns: 68px minmax(0, 1fr);
    column-gap: 18px;
    margin-bottom: 28px;
  }
  .performance-table__num {
    width: 54px;
    height: 54px;
    font-size: 2.45rem;
  }
  .performance-table__step p strong {
    font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  }
  .news-list__item {
    grid-template-columns: 120px 100px minmax(0, 1fr) 32px;
    padding-inline: 20px;
  }
  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .flow-step {
    min-height: 230px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1170px) {
  .site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .site-header__inner {
    position: relative;
    z-index: 2;
  }
  .site-header__brand, .site-header__toggle {
    position: relative;
    z-index: 3;
  }
  .site-header__nav {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 32px 24px;
    border-radius: 0;
    background: rgba(253, 255, 249, 0.98);
    box-shadow: none;
    border: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    text-align: center;
    overflow-y: auto;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .site-header.is-open .site-header__nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-header__link::after {
    display: none;
  }
  .site-header__contact {
    width: min(100%, 286px);
    margin: 0;
    justify-content: center;
  }
}
@media (max-width: 960px) {
  .site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .site-header__nav {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 28px 24px;
    border-radius: 0;
    background: rgba(253, 255, 249, 0.98);
    box-shadow: none;
    border: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 22px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    text-align: center;
    overflow-y: auto;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .site-header.is-open .site-header__nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-header__link::after {
    display: none;
  }
  .site-header__contact {
    width: min(100%, 286px);
    margin: 0;
    justify-content: center;
  }
  .home-hero {
    min-height: 720px;
    padding-bottom: 88px;
  }
  .home-overview__card,
  .home-performance__grid,
  .home-award__grid,
  .performance-intro,
  .form-row {
    grid-template-columns: 1fr;
  }
  .home-performance__badges {
    flex-wrap: wrap;
  }
  .news-list__item,
  .performance-table__header,
  .performance-table__row,
  .definition-table__row,
  .article-nav {
    grid-template-columns: 1fr;
  }
  .news-list__item {
    padding: 22px;
  }
  .news-list__arrow {
    justify-self: end;
  }
  .article-nav__side--next {
    justify-self: start;
  }
  .performance-table__header {
    display: none;
  }
  .performance-table__row:first-of-type > div {
    border-top: 0;
  }
  .performance-table__header > div {
    padding: 20px 18px 22px;
    font-size: 1.15rem;
  }
  .performance-table__header > div + div {
    border-left: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.94);
  }
  .performance-table__row > div {
    padding: 20px 20px 24px;
  }
  .performance-table__row > div:first-child {
    display: block;
    padding: 24px 20px 18px;
    border-right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.94);
  }
  .performance-table__row > div::before {
    content: attr(data-label);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 12px;
    padding: 5px 12px 6px;
    border-radius: 999px;
    background: var(--olive-green);
    box-shadow: 0 8px 18px rgba(77, 124, 15, 0.14);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
  .performance-table__row > div:first-child p {
    font-size: 1.05rem;
    text-align: center;
  }
  .performance-table__step {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 14px;
    margin-bottom: 24px;
  }
  .performance-table__num {
    width: 46px;
    height: 46px;
    font-size: 2.1rem;
    padding-top: 2px;
  }
  .performance-table__step p strong {
    margin-bottom: 6px;
    font-size: 1.25rem;
  }
  .performance-table__note {
    margin-top: 18px;
    font-size: 0.85rem;
    line-height: 1.8;
  }
  .flow-step {
    min-height: 0;
    padding: 28px 18px 24px;
  }
  .flow-step__num {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
  .flow-step h3 {
    margin: 18px 0 8px;
    font-size: 1rem;
    line-height: 1.6;
  }
  .flow-step p {
    font-size: 0.92rem;
    line-height: 1.7;
  }
  .flow-summary {
    min-height: 0;
    padding: 16px 18px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .performance-actions {
    gap: 16px;
  }
  .performance-actions .button {
    width: min(100%, 320px);
    min-height: 60px;
    font-size: 1rem;
  }
  .performance-cta {
    padding: 72px 0 78px;
  }
  .performance-cta h2 {
    font-size: 1.9rem;
    line-height: 1.45;
  }
  .performance-cta p {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.8;
  }
  .page-hero {
    padding: 164px 0 72px;
  }
  body.page-about .page-main .container {
    width: min(100% - 32px, 1400px);
  }
  body.page-about .page-hero {
    padding: 164px 0 72px;
  }
  body.page-about .about-intro,
  body.page-about .about-organization,
  body.page-about .about-disclosure {
    padding-top: 72px;
    padding-bottom: 80px;
  }
  body.page-about .about-philosophy__lead {
    font-size: 30px;
    line-height: 48px;
  }
  body.page-about .about-philosophy__body {
    font-size: 16px;
    line-height: 34px;
  }
  body.page-about .about-philosophy__body--primary {
    margin-top: 64px;
  }
  body.page-about .about-philosophy__body--secondary {
    margin-top: 56px;
  }
  body.page-about .about-philosophy__group + .about-philosophy__group {
    margin-top: 30px;
  }
  body.page-about .about-banner {
    margin-top: 64px;
  }
  body.page-about .about-section-title {
    font-size: 40px;
  }
  body.page-about .about-section-title--large {
    margin-bottom: 64px;
  }
  body.page-about .about-section-title--small {
    margin-bottom: 42px;
    font-size: 28px;
  }
  body.page-about .organization-card {
    padding: 24px 28px;
  }
  body.page-about .definition-table__row {
    row-gap: 8px;
    padding: 22px 0;
  }
  body.page-about .definition-table__row--compact dd {
    max-width: none;
    line-height: 1.8;
  }
  body.page-about .definition-table dt,
  body.page-about .definition-table dd {
    line-height: 1.9;
  }
}
@media (max-width: 720px) {
  :root {
    --container: calc(100% - 24px);
  }
  .site-header__inner {
    min-height: 82px;
  }
  .site-header__nav {
    inset: 0;
  }
  .home-hero {
    min-height: 640px;
    padding: 128px 0 72px;
  }
  .home-overview {
    margin-top: -48px;
  }
  .home-overview__card,
  .form-card,
  .article-card,
  .policy-card,
  .organization-card {
    padding: 24px;
  }
  .home-overview__card {
    gap: 28px;
  }
  .home-overview__media {
    min-height: 240px;
  }
  .home-performance,
  .home-award,
  .home-news,
  .home-contact,
  .page-section {
    padding: 76px 0;
  }
  .performance-intro-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }
  .home-performance__visuals {
    min-height: 360px;
  }
  .home-performance__photo--large {
    inset: 0 72px 90px 0;
  }
  .home-performance__photo--small {
    width: 164px;
    height: 220px;
  }
  .home-performance__ring {
    right: 44px;
    top: 32px;
    width: 110px;
    height: 110px;
  }
  .page-hero {
    padding: 132px 0 48px;
  }
  .page-hero__title {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }
  body[data-page=performance] .section-heading {
    margin-bottom: 34px;
  }
  body[data-page=performance] .section-heading__title {
    font-size: 2rem;
    line-height: 1.35;
  }
  body[data-page=performance] .page-section--soft {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  body.page-about .page-main .container {
    width: calc(100% - 24px);
  }
  body.page-about .page-hero {
    padding: 132px 0 48px;
  }
  body.page-about .page-hero__title {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }
  body.page-about .breadcrumb .container {
    min-height: 42px;
    font-size: 12px;
    line-height: 42px;
  }
  body.page-about .about-intro,
  body.page-about .about-organization,
  body.page-about .about-disclosure {
    padding-top: 56px;
    padding-bottom: 64px;
  }
  body.page-about .about-philosophy__lead {
    font-size: 24px;
    line-height: 38px;
  }
  body.page-about .about-philosophy__body {
    font-size: 14px;
    line-height: 28px;
  }
  body.page-about .about-philosophy__body--primary {
    margin-top: 48px;
  }
  body.page-about .about-philosophy__body--secondary {
    margin-top: 40px;
  }
  body.page-about .about-philosophy__group + .about-philosophy__group {
    margin-top: 24px;
  }
  body.page-about .about-banner {
    margin-top: 48px;
  }
  body.page-about .about-section-title {
    font-size: 30px;
  }
  body.page-about .about-section-title--large {
    margin-bottom: 40px;
  }
  body.page-about .about-section-title--small {
    margin-bottom: 32px;
    font-size: 24px;
  }
  body.page-about .organization-card {
    padding: 22px 18px;
  }
  body.page-about .definition-table__row {
    padding: 18px 0;
  }
  body.page-about .definition-table__row--compact dd {
    line-height: 24px;
  }
  body.page-about .definition-table dt,
  body.page-about .definition-table dd {
    font-size: 14px;
    line-height: 26px;
  }
  body.page-about .disclosure-card__item {
    grid-template-columns: 28px minmax(0, 1fr) 16px;
    gap: 14px;
    padding: 0 16px;
  }
  body.page-about .disclosure-card__item span:nth-child(2) {
    font-size: 14px;
    line-height: 24px;
  }
  body.page-about .disclosure-card__icon {
    width: 18px;
    height: 19px;
  }
  body.page-about .disclosure-card__download {
    width: 14px;
    height: 15px;
  }
  body.page-about .disclosure-card__note {
    padding: 10px 16px 12px;
    font-size: 11px;
    line-height: 22px;
  }
  .flow-steps {
    grid-template-columns: 1fr;
  }
  .news-filters {
    gap: 10px;
  }
  .news-filters button {
    min-height: 50px;
    padding-inline: 18px;
    font-size: 0.84rem;
  }
  .article-placeholder {
    height: 260px;
  }
  .policy-signature,
  .site-footer__bottom {
    flex-direction: column;
  }
}
/* Figma refresh: home */
body.page-home {
  --container: min(1392px, calc(100% - 48px));
}
body.page-home .page-main {
  background: var(--olive-surface);
}
body.page-home:not(.has-scrolled) .site-header {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.button__icon svg,
.pill-link__icon svg,
.news-list__arrow svg,
.home-news__more-icon svg {
  display: block;
}

.home-news__more-icon svg {
  width: 7px;
  height: 13px;
}

.site-header {
  background: rgba(253, 255, 249, 0.92);
  border-bottom: 1px solid rgba(101, 163, 13, 0.12);
  backdrop-filter: blur(16px);
}

.has-scrolled .site-header {
  background: rgba(253, 255, 249, 0.96);
  box-shadow: 0 12px 36px rgba(38, 58, 15, 0.08);
  border-bottom-color: rgba(101, 163, 13, 0.14);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: var(--header-container);
  gap: 32px;
  min-height: 133px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-header__logo {
  width: 135px;
  min-width: 135px;
}
.site-header__brand-copy {
  display: grid;
  align-content: center;
  gap: 2px;
}
.site-header__brand-caption {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: #515151;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.164;
  letter-spacing: 0;
}
.site-header__brand-name {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: var(--olive-green);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.164;
  letter-spacing: 0.02em;
}
.site-header__nav {
  gap: clamp(20px, 2vw, 36px);
}
.site-header__link {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
}
.site-header__link::after {
  bottom: -15px;
  height: 2px;
}
.site-header__contact {
  width: 207px;
  min-width: 207px;
  justify-content: center;
  min-height: 55px;
  padding: 0 28px;
  gap: 13px;
  border-radius: 31px;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
}
.site-header__contact .button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 14px;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
  flex: 0 0 19px;
}
.site-header__contact .button__icon svg {
  width: 19px;
  height: 14px;
}
.site-header__contact > span:last-child {
  white-space: nowrap;
}

.pill-link,
.button--home,
.site-header__contact,
.home-news__more,
.news-list__item {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.pill-link {
  position: relative;
  display: inline-grid;
  grid-template-columns: 18px auto 18px;
  align-items: center;
  justify-content: center;
  column-gap: 18px;
  min-width: 300px;
  min-height: 86px;
  padding: 0 48px;
  border-radius: 43px;
  border: 1px solid rgba(101, 163, 13, 0.62);
  background: #fff;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  color: var(--olive-green);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.pill-link:hover,
.pill-link:focus-visible,
.button--home:hover,
.button--home:focus-visible,
.site-header__contact:hover,
.site-header__contact:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(59, 91, 16, 0.14);
}

.pill-link__label,
.button__label {
  display: inline-block;
  white-space: nowrap;
}

.pill-link__label {
  grid-column: 2;
  width: auto;
  text-align: center;
  line-height: 37px;
}
.pill-link__icon {
  grid-column: 3;
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 13px;
  border: 0;
  background: none;
  border-radius: 0;
  flex: 0 0 18px;
  transform: none;
}
.pill-link__icon svg {
  width: 7px;
  height: 13px;
}

.home-hero {
  position: relative;
  min-height: 945px;
  padding: 182px 0 96px;
  align-items: flex-start;
}
.home-hero__media, .home-hero__softness {
  position: absolute;
  inset: 0;
}
.home-hero__media {
  overflow: hidden;
  background: #fffef8;
}
.home-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/home-hero.jpg") center 36%/cover no-repeat;
  opacity: 0.42;
}
.home-hero__softness {
  background: radial-gradient(circle at 17% 20%, rgba(255, 255, 255, 0.68), transparent 31%), radial-gradient(circle at 82% 11%, rgba(255, 251, 230, 0.28), transparent 24%), radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.22), transparent 33%), linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0.36) 100%);
}
.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: auto;
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: start;
  gap: 37px;
  padding-top: 124px;
}
.home-hero__content {
  display: grid;
  width: 100%;
  min-height: auto;
  place-items: center;
}
.home-hero__body {
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 61px;
}
.home-hero__heading {
  margin: 0;
  width: min(100%, 700px);
  text-align: center;
  white-space: nowrap;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(4rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  align-self: center;
}
.home-hero__heading span {
  font-family: "Caveat", "Noto Sans JP", cursive;
  display: inline-block;
  font-size: 1.38em;
  line-height: 0.86;
  margin: 0 0.05em;
  transform: translateY(0.04em);
  letter-spacing: 0.12em;
}
.home-hero__copy {
  max-width: 633px;
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
  line-height: 37px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.home-hero__actions {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  gap: 35px;
  justify-content: center;
  align-items: center;
}
.home-hero__actions[data-visible-count="1"], .home-hero__actions:has(> .pill-link:only-child) {
  grid-template-columns: 300px;
}
.home-hero__actions[data-visible-count="2"] {
  grid-template-columns: repeat(2, 300px);
}

.home-overview {
  margin-top: -38px;
}
.home-overview .container {
  width: min(1512px, 100% - 24px);
}
.home-overview__card {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(40px, 6vw, 116px);
  min-height: 612px;
  padding: 70px 92px 70px 64px;
  border-radius: 40px 40px 0 0;
  background: #fff;
  box-shadow: 0 10px 36px rgba(65, 89, 20, 0.08);
}
.home-overview__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(255, 255, 255, 0.965) 42%, rgba(255, 255, 255, 0.945) 100%), radial-gradient(circle at 84% 24%, rgba(255, 255, 255, 0.58), transparent 32%), radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.34), transparent 24%);
}
.home-overview__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: url("../images/home-intro.jpg") lightgray 50%/cover no-repeat;
  opacity: 0.16;
  transform: scale(1.04);
  transform-origin: center;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.14) 28%, rgba(0, 0, 0, 0.42) 56%, rgba(0, 0, 0, 0.82) 82%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.14) 28%, rgba(0, 0, 0, 0.42) 56%, rgba(0, 0, 0, 0.82) 82%, #000 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.home-overview__media,
.home-performance__photo {
  margin: 0;
}

.home-overview__media {
  position: relative;
  z-index: 1;
  overflow: visible;
  min-width: 0;
  min-height: 455px;
  padding: 0;
  border-radius: 10px;
  border: 0;
  background: none;
}
.home-overview__media::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: -30px;
  left: -30px;
  z-index: -1;
  border: 1px solid #b8d66a;
  border-radius: 10px;
  pointer-events: none;
}
.home-overview__media img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 32px rgba(65, 89, 20, 0.08);
}
.home-overview__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  align-items: flex-start;
  gap: 30px;
  padding-top: 10px;
  padding-right: 8px;
}
.home-overview__lead {
  margin: 0;
  font-size: 20px;
  line-height: 40px;
}
.home-overview__description {
  margin: 0;
  color: var(--olive-text);
  font-size: 20px;
  line-height: 40px;
}

.button--home {
  min-height: 68px;
  padding: 0 30px;
  gap: 16px;
  border-radius: 60px;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.button--home .button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  flex: 0 0 auto;
}
.button--home .button__label {
  line-height: 40px;
}

.button--primary .button__icon--arrow path {
  fill: #fff;
}

.button--disabled .button__icon--arrow path,
.button[aria-disabled=true] .button__icon--arrow path {
  fill: #7b8794;
}

.button__icon--arrow {
  width: 7px;
  height: 13px;
  margin-left: auto;
  flex: 0 0 7px;
}
.button__icon--arrow svg {
  width: 7px;
  height: 13px;
}

.button--home.button--secondary {
  border: 0;
  color: var(--olive-text);
}

.button--intro {
  width: 224px;
  min-width: 224px;
  justify-content: center;
  padding: 0 30px;
}

.button--home-wide {
  width: 360px;
  min-width: 360px;
  justify-content: center;
  padding: 0 29px;
}

.button--home-small {
  width: 338px;
  min-width: 338px;
  justify-content: center;
  font-size: 1.125rem;
  padding: 0 29px;
}

.button--contact-form {
  min-width: 302px;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  font-size: 1.25rem;
  box-shadow: 0 10px 24px rgba(56, 79, 20, 0.08);
}

.button--contact-phone {
  min-width: 229px;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  font-size: 1.25rem;
  box-shadow: 0 10px 24px rgba(56, 79, 20, 0.12);
}

.button--contact-form .button__icon,
.button--contact-phone .button__icon {
  order: -1;
}

.button--contact-form:hover,
.button--contact-form:focus-visible,
.button--contact-phone:hover,
.button--contact-phone:focus-visible {
  box-shadow: 0 16px 28px rgba(56, 79, 20, 0.14);
}

.button__icon--mail svg {
  width: 19px;
  height: 14px;
}
.button__icon--phone svg {
  width: 18px;
  height: 18px;
}

.home-performance {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #f8ffe4 0%, #fdfff9 100%);
}

.home-section-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 96px;
  text-align: center;
}

.home-section-head--plain {
  margin-bottom: 76px;
}

.home-section-head__eyebrow {
  margin: 0;
  font-family: "Caveat", cursive;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.1em;
  color: var(--olive-green);
}
.home-section-head__title {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.home-section-head__subtitle {
  margin: 0;
  color: #949494;
  font-size: 1.125rem;
  line-height: 1.75;
}

.home-performance__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.88fr);
  gap: 110px;
  align-items: center;
}

.home-performance__copy p,
.home-award__content p,
.home-contact__copy {
  margin: 0;
  color: var(--olive-text);
  font-size: 1rem;
  line-height: 2.5;
}

.home-highlight-title {
  position: relative;
  z-index: 0;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 34px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.28;
}
.home-highlight-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  bottom: -2px;
  height: 13px;
  background: rgba(220, 237, 196, 0.95);
  z-index: -1;
}

.home-performance__badges {
  gap: 56px;
  margin: 52px 0 52px;
}

.home-badge {
  display: grid;
  justify-items: center;
  align-content: start;
  width: 150px;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  height: auto;
}
.home-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  margin-bottom: 0;
  border: 1px solid rgba(101, 163, 13, 0.3);
  border-radius: 50%;
  background: #fff;
  color: inherit;
}
.home-badge__icon svg {
  width: 84px;
  height: 84px;
}
.home-badge__label {
  display: block;
  text-align: center;
  font-size: 1.125rem;
  line-height: 26px;
}

.home-performance__visuals {
  min-height: 540px;
}
.home-performance__texture {
  position: absolute;
  border: 1px solid #65a30d;
  border-radius: 50%;
  z-index: 0;
}
.home-performance__texture--left {
  left: 20px;
  top: 42px;
  width: 434px;
  height: 434px;
  border-radius: 434px;
}
.home-performance__texture--right {
  right: 0;
  bottom: 32px;
  width: 150px;
  height: 150px;
  border-radius: 150px;
}
.home-performance__photo {
  border-radius: 6px;
  z-index: 1;
}
.home-performance__photo--large {
  top: 0;
  left: 0;
  width: 414px;
  height: 291px;
}
.home-performance__photo--small {
  right: 16px;
  bottom: -40px;
  width: 310px;
  height: 310px;
}
.home-performance__photo--small img {
  object-position: center top;
}

.home-award {
  padding: 80px 0;
  background: var(--olive-surface);
}
.home-award__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 88px;
}
.home-award__aside {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 28px;
}
.home-award__card {
  padding: 30px 34px 34px;
  border: 1px solid rgba(101, 163, 13, 0.66);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.home-award__card h3 {
  margin: 0 0 26px;
  font-size: 1.25rem;
  line-height: 2;
}
.home-award__list {
  gap: 18px;
}
.home-award__list li {
  padding-left: 28px;
  font-size: 1rem;
  line-height: 1.5;
}
.home-award__list li::before {
  top: 2px;
  width: 14px;
  height: 13px;
  border: 0;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='13' viewBox='0 0 14 13' fill='none'%3E%3Cpath d='M13.5871 0.194079C14.034 0.518981 14.134 1.14379 13.809 1.59053L5.80876 12.5872C5.63688 12.8247 5.37124 12.9715 5.07749 12.9965C4.78373 13.0215 4.49935 12.9121 4.29309 12.7059L0.292977 8.70714C-0.097659 8.31664 -0.097659 7.68245 0.292977 7.29195C0.683613 6.90144 1.31801 6.90144 1.70864 7.29195L4.88061 10.4629L12.1933 0.412763C12.5183 -0.0339778 13.1433 -0.133948 13.5902 0.190954L13.5871 0.194079Z' fill='%2365A30D'/%3E%3C/svg%3E") center/contain no-repeat;
  transform: none;
}
.home-award__content {
  max-width: 635px;
}
.home-award__cta-note {
  width: min(100%, 338px);
  margin: -14px 0 0;
  color: #7b8794;
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: center;
  justify-self: start;
}

.home-news {
  background: var(--olive-gray);
  padding: 80px 0;
}
.home-news__shell {
  max-width: 976px;
  margin: 0 auto;
}
.home-news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.home-news__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.35;
}
.home-news__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--olive-text-soft);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.14em;
}
.home-news__more:hover, .home-news__more:focus-visible {
  color: var(--olive-green);
}
.home-news__more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7px;
  height: 13px;
  border-radius: 0;
  flex: 0 0 7px;
}
.home-news__divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.34);
  margin-bottom: 32px;
}

.news-list {
  gap: 24px;
}
.news-list__item {
  grid-template-columns: 170px minmax(0, 1fr) 32px;
  gap: 24px;
  min-height: 101px;
  padding: 18px 24px;
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 8px 20px rgba(33, 44, 13, 0.03);
}
.news-list__item:hover, .news-list__item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(101, 163, 13, 0.24);
}
.news-list__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.news-list__date {
  font-size: 0.875rem;
  color: var(--olive-text-soft);
}

.news-tag {
  min-height: 23px;
  padding: 0 12px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.news-list__title {
  font-size: 1rem;
  line-height: 2;
}
.news-list__arrow {
  width: 7px;
  height: 13px;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--olive-text-soft);
}
.news-list__arrow svg {
  width: 7px;
  height: 13px;
}
.news-list__item:hover .news-list__arrow, .news-list__item:focus-visible .news-list__arrow {
  color: var(--olive-green);
}

.home-contact {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8ffe4 0%, #e8f5cf 100%);
}
.home-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.home-contact__title {
  margin: 0 0 64px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 40px;
}
.home-contact__actions {
  gap: 35px;
  margin-top: 64px;
}
.home-contact__copy {
  max-width: none;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 40px;
}
.home-contact__note {
  margin: 26px 0 0;
  color: #8c8c8c;
  font-size: 1rem;
  line-height: 40px;
}

.site-footer {
  padding: 80px 0 20px;
}
.site-footer__inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px 130px;
}
.site-footer__brand {
  gap: 14px;
  margin-left: 30px;
}
.site-footer__logo {
  width: 135px;
  margin: 0;
}
.site-footer__brand p {
  font-size: 1rem;
}
.site-footer__nav {
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 6px 74px;
  margin-right: 30px;
  justify-content: end;
}
.site-footer__nav-column {
  display: grid;
  align-content: start;
  gap: 6px;
}
.site-footer__nav a {
  font-size: 1rem;
  line-height: 2.4;
}
.site-footer__bottom {
  font-size: 0.75rem;
  line-height: 1.8;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1100px) {
  :root {
    --header-container: min(100% - 40px, 1320px);
  }
  body.page-home {
    --container: min(100% - 40px, 1320px);
  }
  .home-performance__grid,
  .home-award__grid {
    gap: 64px;
  }
  .news-list__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-list__arrow {
    justify-self: end;
  }
  .site-footer__inner {
    gap: 40px 72px;
  }
}
@media (max-width: 1170px) {
  .site-header {
    background: rgba(253, 255, 249, 0.96);
    border-bottom: 1px solid rgba(101, 163, 13, 0.12);
    backdrop-filter: blur(16px);
  }
  .site-header__inner {
    min-height: 96px;
    position: relative;
    z-index: 2;
  }
  .site-header__brand, .site-header__toggle {
    position: relative;
    z-index: 3;
  }
  .site-header__nav {
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 32px 24px;
    border-radius: 0;
    background: rgba(253, 255, 249, 0.98);
    box-shadow: none;
    border: 0;
    place-content: center;
    justify-items: center;
    gap: 24px;
    text-align: center;
    overflow-y: auto;
  }
  .site-header__contact {
    width: min(100%, 286px);
    margin: 0;
    justify-content: center;
  }
  .site-header__link::after {
    display: none;
  }
}
@media (max-width: 960px) {
  .site-header {
    background: rgba(253, 255, 249, 0.96);
    border-bottom: 1px solid rgba(101, 163, 13, 0.12);
    backdrop-filter: blur(16px);
  }
  .site-header__inner {
    min-height: 96px;
  }
  .site-header__nav {
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 28px 24px;
    border-radius: 0;
    background: rgba(253, 255, 249, 0.98);
    box-shadow: none;
    border: 0;
    place-content: center;
    justify-items: center;
    gap: 22px;
    text-align: center;
    overflow-y: auto;
  }
  .site-header__contact {
    width: min(100%, 286px);
    margin: 0;
    justify-content: center;
  }
  .site-header__link::after {
    display: none;
  }
  .home-hero {
    min-height: auto;
    padding: 148px 0 96px;
  }
  .home-hero__inner {
    min-height: 0;
    grid-template-areas: none;
    grid-template-rows: auto auto;
    gap: 28px;
  }
  .home-hero__content, .home-hero__body {
    grid-area: auto;
  }
  .home-hero__content {
    min-height: auto;
  }
  .home-hero__body {
    gap: 24px;
  }
  .home-hero__actions {
    grid-template-columns: repeat(2, minmax(260px, 300px));
    gap: 18px;
  }
  .home-hero__actions > .pill-link:last-child {
    grid-column: 1/-1;
    justify-self: center;
  }
  .pill-link {
    min-width: 0;
  }
  .home-overview {
    margin-top: -36px;
    padding-bottom: 120px;
  }
  .home-overview__card,
  .home-performance__grid,
  .home-award__grid {
    grid-template-columns: 1fr;
  }
  .home-performance__badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
  }
  .home-award__content {
    max-width: none;
  }
  .home-award__aside {
    justify-items: start;
  }
  .home-award__cta-note {
    width: 100%;
    margin-top: -10px;
    justify-self: stretch;
  }
  .button--home-wide,
  .button--home-small,
  .button--contact-form,
  .button--contact-phone {
    width: 100%;
    min-width: 0;
  }
  .news-list__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
  }
  body[data-page=news] .page-section {
    padding: 32px 0 88px;
  }
  body[data-page=news] .news-archive__lead {
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 1.9;
  }
  body[data-page=news] .news-filters {
    gap: 12px;
    margin-bottom: 40px;
  }
  body[data-page=news] .news-filters button {
    width: auto !important;
    min-height: 52px;
    height: 52px;
    padding: 0 18px;
    font-size: 16px;
    line-height: 1.4;
  }
  body[data-page=news] .news-list__item {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 18px 20px;
  }
  body[data-page=news] .news-list__meta {
    gap: 10px 12px;
    flex-wrap: wrap;
  }
  body[data-page=news] .news-list__date, body[data-page=news] .news-list__title {
    font-size: 16px;
    line-height: 1.7;
  }
  body[data-page=news] .news-list__title {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  body[data-page=news] .news-list__arrow {
    justify-self: end;
  }
  body[data-page=news] .news-pagination {
    gap: 12px;
  }
  body[data-page=performance-form] .page-section,
  body[data-page=contact] .page-section {
    padding: 40px 0 80px;
  }
  body[data-page=performance-form] .page-lead,
  body[data-page=contact] .page-lead {
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 32px;
  }
  body[data-page=performance-form] .form-card,
  body[data-page=contact] .form-card {
    padding: 32px 24px 36px;
  }
  body[data-page=performance-form] .olivecare-fluent-form,
  body[data-page=contact] .olivecare-fluent-form {
    padding: 32px 24px 36px;
  }
  body[data-page=performance-form] .form-row,
  body[data-page=contact] .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  body[data-page=performance-form] .form-confirmation__row,
  body[data-page=contact] .form-confirmation__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  body[data-page=performance-form] .olivecare-fluent-form .ff-el-group:not(.ff_submit_btn_wrapper):not(.ff-el-section-break),
  body[data-page=contact] .olivecare-fluent-form .ff-el-group:not(.ff_submit_btn_wrapper):not(.ff-el-section-break) {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  body[data-page=performance-form] .form-confirm,
  body[data-page=contact] .form-confirm {
    margin-top: 28px;
    padding: 14px 16px 18px;
  }
  body[data-page=performance-form] .form-submit .button,
  body[data-page=contact] .form-submit .button {
    width: min(100%, 338px);
  }
  body[data-page=performance-form] .olivecare-fluent-form .ff-btn-submit,
  body[data-page=contact] .olivecare-fluent-form .ff-btn-submit {
    width: min(100%, 338px);
  }
  body[data-page=performance-form] .form-date-grid .form-inline {
    grid-template-columns: 1fr;
  }
  body[data-page=performance-form] .form-headcount {
    max-width: none;
  }
  body[data-page=news-post] .page-section {
    padding: 48px 0 96px;
  }
  body[data-page=news-post] .article-card {
    padding: 32px 24px 28px;
  }
  body[data-page=news-post] .article-meta {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 32px;
  }
  body[data-page=news-post] .article-title {
    font-size: 24px;
    line-height: 1.5;
  }
  body[data-page=news-post] .article-divider {
    margin: 28px 0 24px;
  }
  body[data-page=news-post] .article-card p {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 32px;
  }
  body[data-page=news-post] .article-media {
    height: 320px;
    margin-bottom: 28px;
  }
  body[data-page=news-post] .article-nav {
    gap: 18px;
    margin-top: 42px;
  }
  body[data-page=news-post] .article-nav__side {
    font-size: 16px;
    line-height: 32px;
  }
  body[data-page=news-post] .article-nav__circle {
    width: 42px;
    height: 42px;
  }
  body[data-page=news-post] .article-nav__back {
    width: min(100%, 220px);
    min-height: 52px;
    font-size: 16px;
    line-height: 32px;
    justify-self: center;
  }
  body[data-page=privacy] .page-section {
    padding: 56px 0 76px;
  }
  body[data-page=privacy] .policy-card {
    padding: 28px 24px 32px;
  }
  body[data-page=privacy] .policy-card__intro,
  body[data-page=privacy] .policy-card__text,
  body[data-page=privacy] .policy-list {
    font-size: 15px;
    line-height: 28px;
  }
  body[data-page=privacy] .policy-section {
    padding: 18px 0 20px;
  }
  body[data-page=privacy] .policy-section__title {
    font-size: 18px;
    line-height: 34px;
  }
  body[data-page=privacy] .policy-contact {
    padding: 14px 18px 16px;
  }
  body[data-page=privacy] .policy-signature {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  body[data-page=privacy] .policy-signature p:first-child,
  body[data-page=privacy] .policy-signature p:last-child {
    max-width: none;
  }
  body[data-page=privacy] .policy-signature p:last-child {
    margin-top: 0;
    justify-self: start;
    text-align: left;
  }
  .home-contact__actions {
    gap: 18px;
  }
}
@media (max-width: 720px) {
  :root {
    --header-container: calc(100% - 24px);
  }
  body.page-home {
    --container: calc(100% - 24px);
  }
  .site-header__inner {
    min-height: 82px;
    gap: 16px;
  }
  .site-header__logo {
    width: 108px;
    min-width: 108px;
  }
  .site-header__brand-copy {
    gap: 0;
  }
  .site-header__brand-caption {
    font-size: 10px;
  }
  .site-header__brand-name {
    font-size: 20px;
  }
  .site-header__nav {
    padding: 24px 20px;
    gap: 35px;
  }
  .site-header__link {
    font-size: 1rem;
  }
  .site-header__contact {
    min-height: 52px;
    font-size: 0.9rem;
  }
  .home-hero {
    padding: 122px 0 72px;
  }
  .home-hero__inner {
    gap: 24px;
    padding-inline: 10px;
  }
  .home-hero__content {
    min-height: auto;
    width: 80%;
  }
  .home-hero__body {
    width: 100%;
    gap: 18px;
  }
  .home-hero__heading {
    width: min(100%, 520px);
    white-space: normal;
    font-size: clamp(2.9rem, 11vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: 0.05em;
  }
  .home-hero__copy {
    max-width: 348px;
    font-size: 0.95rem;
    line-height: 2.05;
  }
  .home-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 156px));
    justify-content: center;
    align-items: stretch;
    width: min(100%, 324px);
    max-width: 100%;
    gap: 12px;
    margin-inline: auto;
  }
  .home-hero__actions[data-visible-count="1"] {
    grid-template-columns: minmax(0, 156px);
    width: min(100%, 156px);
  }
  .home-hero__actions[data-visible-count="2"], .home-hero__actions[data-visible-count="3"] {
    grid-template-columns: repeat(2, minmax(0, 156px));
    width: min(100%, 324px);
  }
  .home-hero__actions > .pill-link {
    width: 100%;
    justify-self: stretch;
  }
  .home-hero__actions > .pill-link:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
  .home-hero__actions > .pill-link:only-child, .home-hero__actions > .pill-link.pill-link--hero-top {
    grid-column: 1/-1;
    width: 100%;
    max-width: 156px;
    justify-self: center;
  }
  .home-hero__actions > .pill-link:first-child:nth-last-child(3) {
    grid-column: 1/-1;
    width: 100%;
    max-width: 156px;
    justify-self: center;
  }
  .pill-link {
    display: inline-grid;
    grid-template-columns: 14px auto 14px;
    align-items: center;
    column-gap: 8px;
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 16px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }
  .pill-link::before {
    content: "";
    width: 14px;
    height: 13px;
  }
  .pill-link__label {
    width: auto;
    text-align: center;
  }
  .pill-link__icon {
    position: static;
    top: auto;
    right: auto;
    justify-content: center;
    width: 14px;
    height: 13px;
    flex: 0 0 14px;
    transform: none;
  }
  .home-overview__card {
    gap: 22px;
    min-height: auto;
    padding: 26px 18px 26px;
    border-radius: 24px;
  }
  .home-overview__media {
    min-height: 220px;
  }
  .home-overview__media::before {
    top: 14px;
    right: 14px;
    bottom: -14px;
    left: -14px;
  }
  .home-overview__content p {
    font-size: 16px;
    line-height: 2.1;
  }
  .button--home {
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: 60px;
    padding: 0 22px;
    font-size: 0.95rem;
  }
  .button--home .button__icon {
    width: 34px;
    height: 34px;
  }
  .button--home .button__icon--arrow {
    width: 7px;
    height: 13px;
    flex: 0 0 7px;
  }
  .button--home:not(.button--contact-form):not(.button--contact-phone) {
    display: grid;
    grid-template-columns: 7px auto 7px;
    align-items: center;
    column-gap: 14px;
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    justify-self: center;
    margin-inline: auto;
    padding: 0 22px;
  }
  .button--home:not(.button--contact-form):not(.button--contact-phone)::before {
    content: "";
    width: 7px;
    height: 13px;
  }
  .button--home:not(.button--contact-form):not(.button--contact-phone) .button__label {
    width: auto;
    text-align: center;
  }
  .button--home:not(.button--contact-form):not(.button--contact-phone) .button__icon--arrow {
    position: static;
    margin-left: 0;
  }
  .button--contact-form .button__icon--mail,
  .button--contact-phone .button__icon--phone {
    width: auto;
    height: auto;
    flex: 0 0 auto;
  }
  .home-overview__content .button,
  .home-performance__copy .button,
  .home-award__aside > .button,
  .performance-actions .button,
  .performance-cta .button,
  .form-submit .button {
    margin-inline: auto;
  }
  .home-contact__actions {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .home-performance {
    padding: 72px 0 108px;
  }
  .home-section-head {
    gap: 8px;
    margin-bottom: 56px;
  }
  .home-section-head__eyebrow {
    font-size: 1rem;
  }
  .home-section-head__title,
  .home-news__title,
  .home-contact__title {
    font-size: 1.875rem;
  }
  .home-section-head__subtitle {
    font-size: 0.875rem;
  }
  .home-highlight-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .home-highlight-title::after {
    left: 0;
    right: 0;
    width: auto;
    bottom: 4px;
    height: 10px;
  }
  .home-performance__copy p,
  .home-award__content p,
  .home-contact__copy {
    font-size: 0.9375rem;
    line-height: 2.1;
  }
  .home-performance__badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 316px);
    margin: 28px auto 32px;
    justify-items: center;
    align-items: start;
    gap: 16px;
  }
  .home-badge {
    width: 100%;
    height: auto;
    gap: 10px;
    padding: 0;
  }
  .home-badge__icon {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .home-badge__label {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .home-performance__visuals {
    min-height: 360px;
  }
  .home-performance__texture--left {
    left: 18px;
    top: 34px;
    width: 250px;
    height: 250px;
    border-radius: 250px;
  }
  .home-performance__texture--right {
    right: 4px;
    bottom: 26px;
    width: 92px;
    height: 92px;
    border-radius: 92px;
  }
  .home-performance__photo--large {
    width: 70%;
    height: 200px;
  }
  .home-performance__photo--small {
    right: 0;
    bottom: 10px;
    width: 42%;
    height: 180px;
  }
  .home-award {
    padding: 0 0 92px;
  }
  .home-award__card {
    padding: 22px 20px 24px;
  }
  .home-award__aside {
    gap: 20px;
  }
  .home-award__card h3 {
    margin-bottom: 18px;
    font-size: 1.05rem;
  }
  .home-award__list {
    gap: 14px;
  }
  .home-award__list li {
    font-size: 0.92rem;
  }
  .home-news {
    padding: 72px 0 92px;
  }
  .home-news__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .home-news__more {
    font-size: 0.8rem;
  }
  .news-list {
    gap: 16px;
  }
  .news-list__item {
    padding: 18px;
  }
  .news-list__title {
    font-size: 0.92rem;
    line-height: 1.8;
  }
  body[data-page=news] .page-hero__title {
    font-size: 2rem;
    line-height: 1.35;
  }
  body[data-page=news] .breadcrumb .container {
    font-size: 12px;
    line-height: 42px;
  }
  body[data-page=news] .news-pagination a,
  body[data-page=news] .news-pagination span {
    width: 42px;
    height: 42px;
    font-size: 16px;
    line-height: 1;
  }
  body[data-page=performance-form] .page-hero__title,
  body[data-page=contact] .page-hero__title,
  body[data-page=news-post] .page-hero__title,
  body[data-page=privacy] .page-hero__title {
    font-size: 2rem;
    line-height: 1.35;
  }
  body[data-page=performance-form] .breadcrumb .container,
  body[data-page=contact] .breadcrumb .container,
  body[data-page=news-post] .breadcrumb .container,
  body[data-page=privacy] .breadcrumb .container {
    font-size: 12px;
    line-height: 42px;
  }
  body[data-page=performance-form] .page-lead,
  body[data-page=contact] .page-lead {
    font-size: 16px;
    line-height: 30px;
  }
  body[data-page=performance-form] .form-section,
  body[data-page=contact] .form-section {
    margin-bottom: 38px;
  }
  body[data-page=performance-form] .form-section__title,
  body[data-page=contact] .form-section__title {
    font-size: 18px;
    line-height: 34px;
  }
  body[data-page=performance-form] .form-label,
  body[data-page=contact] .form-label {
    font-size: 15px;
    line-height: 30px;
  }
  body[data-page=performance-form] .form-date-grid .form-inline,
  body[data-page=performance-form] .form-headcount__row,
  body[data-page=contact] .form-date-grid .form-inline,
  body[data-page=contact] .form-headcount__row {
    gap: 8px;
  }
  body[data-page=news-post] .article-title {
    font-size: 22px;
    line-height: 1.55;
  }
  body[data-page=news-post] .article-card p {
    font-size: 15px;
    line-height: 30px;
  }
  body[data-page=news-post] .article-media {
    height: 220px;
  }
  body[data-page=privacy] .policy-card__intro,
  body[data-page=privacy] .policy-card__text,
  body[data-page=privacy] .policy-list {
    font-size: 14px;
    line-height: 26px;
  }
  .home-contact {
    padding: 72px 0 88px;
  }
  .home-contact__title {
    margin-bottom: 32px;
    font-size: 1.875rem;
    line-height: 1.35;
  }
  .home-contact__actions {
    gap: 12px;
    margin-top: 28px;
  }
  .home-contact__copy {
    font-size: 0.9375rem;
    line-height: 2.1;
  }
  .home-contact__note {
    font-size: 0.75rem;
    line-height: 1.8;
  }
  .site-footer {
    padding: 64px 0 24px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    text-align: center;
  }
  .site-footer__brand {
    margin-left: 0;
    justify-items: center;
    text-align: center;
  }
  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-right: 0;
    justify-items: center;
    text-align: center;
  }
  .site-footer__nav-column {
    justify-items: center;
  }
  .site-footer__nav a, .site-footer__brand p {
    font-size: 0.9rem;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
  }
}
@page {
  margin: 14mm 12mm;
}
@media print {
  html {
    scroll-behavior: auto;
  }
  body {
    min-width: 0;
    background: #fff !important;
    color: #000 !important;
    overflow: visible !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
  }
  html.js .page-main *,
  html.js .site-footer *,
  html.js .site-header__brand,
  html.js .site-header__brand * {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
  }
  .container,
  .site-header__inner,
  .site-footer__inner {
    width: 100% !important;
    max-width: none !important;
  }
  .page-main,
  body.is-menu-open {
    overflow: visible !important;
  }
  .site-header,
  .site-footer {
    position: static !important;
    inset: auto !important;
    background: #fff !important;
    color: #000 !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .site-header {
    margin-bottom: 10mm;
  }
  .site-footer {
    margin-top: 12mm;
    padding: 8mm 0 0 !important;
    border-top: 1px solid #cfcfcf !important;
  }
  .site-header__inner,
  .site-footer__inner {
    display: block !important;
    min-height: 0 !important;
    gap: 0 !important;
  }
  .site-header__brand-caption,
  .site-header__brand-name,
  .site-footer__brand,
  .site-footer__brand p,
  .site-footer__bottom {
    color: #000 !important;
  }
  .site-footer__logo {
    filter: none !important;
  }
  .site-header__nav,
  .site-header__toggle,
  .breadcrumb,
  .news-filters,
  .news-pagination,
  .site-footer__nav,
  .news-list__arrow {
    display: none !important;
  }
  .button,
  .pill-link {
    background: #fff !important;
    color: #000 !important;
    border-color: #bdbdbd !important;
  }
  .page-hero,
  .page-section,
  .home-hero,
  .home-performance,
  .home-award,
  .home-news,
  .home-contact,
  .page-section--gray,
  .page-section--soft,
  .page-section--tint {
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 9mm !important;
    background: #fff !important;
  }
  .home-hero__media,
  .home-performance__ring {
    display: none !important;
  }
  .home-overview {
    margin-top: 0 !important;
  }
  .home-overview__card,
  .home-performance__grid,
  .home-award__grid,
  .performance-intro,
  .flow-steps,
  .form-row,
  .definition-table__row,
  .article-nav {
    grid-template-columns: 1fr !important;
    gap: 6mm !important;
  }
  .news-list__item {
    grid-template-columns: 1fr !important;
    gap: 4mm !important;
    min-height: 0 !important;
  }
  .surface-card,
  .home-award__card,
  .organization-card,
  .disclosure-card,
  .article-card,
  .policy-card,
  .form-card,
  .performance-table,
  .news-list__item {
    background: #fff !important;
    border: 1px solid #d7d7d7 !important;
  }
  h1,
  h2,
  h3,
  .section-heading,
  .organization-card,
  .disclosure-card,
  .definition-table__row,
  .performance-table,
  .performance-table__row,
  .flow-step,
  .article-card,
  .policy-section,
  .policy-contact,
  .form-section,
  .form-row,
  .news-list__item {
    break-inside: avoid-page;
    page-break-inside: avoid;
  }
  p,
  li {
    orphans: 3;
    widows: 3;
  }
  img,
  svg {
    break-inside: avoid-page;
    page-break-inside: avoid;
  }
  input,
  select,
  textarea {
    color: #000 !important;
    background: #fff !important;
    border: 1px solid #c8c8c8 !important;
  }
}
body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm {
  max-width: 739px;
  margin: 36px auto 0;
  padding: 12px 20px 18px;
  border: 1px solid rgba(101, 163, 13, 0.9);
  border-radius: 10px;
  background: #fdfff9;
  box-shadow: none;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm__title {
  margin: 0 0 8px;
  color: #101010;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm__list {
  display: grid;
  width: fit-content;
  margin: 0 auto 14px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(101, 163, 13, 0.36);
  gap: 0;
  list-style: none;
  color: #7e7e7e;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.01em;
  justify-items: center;
  text-align: center;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm__list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm__list li::before {
  position: static;
  margin: 0;
  font-size: 1em;
  line-height: 1;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm__checks {
  display: grid;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  gap: 8px;
  justify-items: start;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check {
  display: block;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  color: #101010;
  font-size: 12px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: left;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check + .form-check {
  margin-top: 0;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check > .wpcf7-form-control-wrap,
body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check > .wpcf7-form-control-wrap > .wpcf7-form-control,
body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item {
  display: block;
  max-width: 100%;
  margin: 0;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item > label {
  display: grid;
  grid-template-columns: 20px auto;
  align-items: center;
  justify-content: start;
  column-gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item > label > .wpcf7-list-item-label {
  display: block;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: 0.01em;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  writing-mode: horizontal-tb;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item > label > .wpcf7-list-item-label > span {
  display: inline;
  white-space: inherit;
  word-break: inherit;
  overflow-wrap: inherit;
  writing-mode: inherit;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex: 0 0 20px;
  accent-color: #65a30d;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-submit {
  margin-top: 35px;
  text-align: center;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-submit:not(.form-submit--confirm) .wpcf7-spinner {
  display: block;
  width: 24px;
  margin: 10px auto 0;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .button,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .form-submit__button,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit input[type=submit],
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit button[type=submit],
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 338px);
  min-height: 68px;
  padding: 0 30px;
  border: 0;
  border-radius: 60.5px;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .button > .button__label,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .form-submit__button > .button__label,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .button > span:not(.button__icon),
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .form-submit__button > span:not(.button__icon) {
  min-width: 0;
  text-align: center;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .form-submit__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .button:hover,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .form-submit__button:hover,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .button:focus-visible,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .form-submit__button:focus-visible,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit input[type=submit]:hover,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit input[type=submit]:focus-visible,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit button[type=submit]:hover,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit button[type=submit]:focus-visible,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .wpcf7-submit:hover,
body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .wpcf7-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(76, 109, 21, 0.22);
  opacity: 0.96;
}

@media (max-width: 767px) {
  body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm {
    margin-top: 28px;
    max-width: none;
    padding: 14px 16px 18px;
  }
  body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm__title {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 32px;
  }
  body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm__list {
    width: 100%;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
  body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm__list li {
    justify-content: center;
  }
  body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm__checks {
    width: 100%;
    gap: 8px;
  }
  body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check + .form-check {
    margin-top: 0;
  }
  body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item > label {
    width: 100%;
  }
  body[data-page=performance-form] .olivecare-form-embed--performance .form-confirm .form-check input[type=checkbox] {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
  body[data-page=performance-form] .olivecare-form-embed--performance .form-submit {
    margin-top: 35px;
  }
  body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .button,
  body[data-page=performance-form] .olivecare-form-embed--performance .form-submit input[type=submit],
  body[data-page=performance-form] .olivecare-form-embed--performance .form-submit button[type=submit],
  body[data-page=performance-form] .olivecare-form-embed--performance .form-submit .wpcf7-submit {
    width: min(100%, 338px);
    min-height: 68px;
    padding: 0 30px;
    font-size: 18px;
    line-height: 40px;
  }
}
body[data-page=news] .news-tag--filter {
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
body[data-page=news] .news-tag--filter:hover,
body[data-page=news] .news-tag--filter:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(76, 109, 21, 0.12);
  outline: none;
}
body[data-page=news] .news-list__empty {
  margin: 24px 0 0;
  padding: 22px 24px;
  border: 1px solid rgba(101, 163, 13, 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--olive-text-soft);
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}

.home-news .news-list__item {
  grid-template-columns: max-content minmax(0, 1fr) 32px;
}
.home-news .news-list__meta {
  flex-wrap: nowrap;
  white-space: nowrap;
}
.home-news .news-list__date,
.home-news .news-tag {
  flex: 0 0 auto;
  white-space: nowrap;
}

body[data-page=news] .news-archive__lead,
body[data-page=news] .news-filters button {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  animation: none;
  will-change: auto;
}

@media (max-width: 960px) {
  .home-news .news-list__item {
    grid-template-columns: 1fr;
  }
  .home-news .news-list__meta {
    flex-wrap: wrap;
    white-space: normal;
  }
}
@media (max-width: 720px) {
  body[data-page=news] .news-list__empty {
    margin-top: 18px;
    padding: 18px 16px;
    font-size: 0.94rem;
    line-height: 1.75;
  }
}/*# sourceMappingURL=styles.css.map */
