:root {
  --color-bg: #f4eddf;
  --color-bg-deep: #ece2cf;
  --color-paper-line: rgba(120, 104, 78, 0.12);
  --color-indigo: #18375f;
  --color-indigo-deep: #0c2348;
  --color-indigo-soft: #7186a3;
  --color-text: #1b2940;
  --color-border: rgba(24, 55, 95, 0.2);
  --color-shadow: rgba(20, 31, 49, 0.1);
  --container-width: 1240px;
  --font-body: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  background:
    radial-gradient(circle at 12% 14%, rgba(113, 134, 163, 0.22), transparent 15rem),
    radial-gradient(circle at 84% 18%, rgba(113, 134, 163, 0.2), transparent 14rem),
    radial-gradient(circle at 10% 68%, rgba(113, 134, 163, 0.12), transparent 14rem),
    radial-gradient(circle at 88% 60%, rgba(113, 134, 163, 0.1), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 6px,
      var(--color-paper-line) 7px,
      transparent 8px
    ),
    var(--color-bg);
}

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

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

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header,
.hero,
.categories,
.highlights,
.site-footer {
  position: relative;
}

.site-header__inner,
.hero__inner,
.section-frame,
.site-footer__inner {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.site-header {
  padding: 1.3rem 0 0.8rem;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-indigo-deep);
}

.site-brand__copy {
  display: grid;
  gap: 0.22rem;
}

.site-brand__ruby {
  font-size: 0.84rem;
  line-height: 1;
  letter-spacing: 0.24em;
  padding-left: 0.18rem;
}

.site-brand__mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
}

.site-brand__name {
  display: block;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0.1rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-indigo-deep);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav .is-current::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a:focus-visible,
.site-footer__nav a:focus-visible,
.button-link:focus-visible,
.section-link:focus-visible,
.subhero__backlink:focus-visible,
.about-action:focus-visible,
.owner-action:focus-visible,
.contact-action:focus-visible,
.category-card:focus-visible {
  outline: 2px solid rgba(24, 55, 95, 0.62);
  outline-offset: 4px;
}

.hero {
  padding: 1.7rem 0 1.2rem;
}

.hero__watercolor {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.48;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 35%, rgba(113, 134, 163, 0.46), transparent 28%),
    radial-gradient(circle at 62% 50%, rgba(113, 134, 163, 0.34), transparent 30%),
    radial-gradient(circle at 50% 72%, rgba(141, 158, 182, 0.22), transparent 30%);
}

.hero__watercolor--left {
  top: -5rem;
  left: 6%;
  width: 24rem;
  height: 24rem;
}

.hero__watercolor--center {
  top: -4rem;
  left: 50%;
  width: 19rem;
  height: 19rem;
  transform: translateX(-50%);
}

.hero__watercolor--right {
  top: 0;
  right: 5%;
  width: 22rem;
  height: 22rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(360px, 1.5fr) minmax(220px, 0.92fr);
  align-items: end;
  gap: 2rem;
}

.hero__display {
  display: grid;
  gap: 1.1rem;
}

.hero__display--left {
  justify-items: start;
}

.hero__display--right {
  justify-items: end;
}

.artifact {
  position: relative;
  min-width: 8rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(24, 55, 95, 0.16);
  border-radius: 1.6rem;
  color: var(--color-indigo-deep);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(238, 228, 211, 0.86)),
    var(--color-bg-deep);
  box-shadow: 0 16px 36px var(--color-shadow);
}

.artifact::before {
  content: "";
  position: absolute;
  inset: auto 12% -0.7rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(24, 55, 95, 0.12);
  filter: blur(8px);
  z-index: -1;
}

.artifact__icon {
  display: block;
  text-align: center;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.artifact__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.97rem;
  text-align: center;
}

.artifact--branch {
  width: 8rem;
  border-radius: 2rem 1rem 2rem 1rem;
}

.artifact--basket {
  width: 13rem;
  border-bottom-left-radius: 2.6rem;
  border-bottom-right-radius: 2.6rem;
}

.artifact--daruma,
.artifact--cat {
  width: 8.6rem;
  border-radius: 999px 999px 1.6rem 1.6rem;
}

.artifact--clock {
  width: 10rem;
  min-height: 14rem;
}

.artifact--kettle {
  width: 12rem;
  border-radius: 2rem;
}

.hero__content {
  position: relative;
  padding: 4rem 1rem 3.2rem;
  text-align: center;
}

.hero__content::before,
.hero__content::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(24, 55, 95, 0.4);
}

.hero__content::before {
  bottom: 2rem;
  width: 6rem;
  height: 1px;
}

.hero__content::after {
  bottom: 1.55rem;
  width: 1.5rem;
  height: 1px;
}

.hero__ruby {
  margin: 0 0 1rem;
  color: var(--color-indigo-deep);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: 0.52em;
  text-indent: 0.52em;
}

.hero__title {
  margin: 0;
  color: var(--color-indigo-deep);
  font-size: clamp(4.5rem, 10vw, 8.2rem);
  line-height: 1.04;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
}

.hero__lead {
  margin: 1.6rem 0 0;
  color: var(--color-indigo-deep);
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  font-weight: 700;
}

.hero__text {
  margin: 1.4rem 0 0;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
}

.hero__note {
  margin: 1.2rem auto 0;
  max-width: 32rem;
  color: rgba(12, 35, 72, 0.82);
  font-size: 0.98rem;
}

.categories {
  padding: 1rem 0 2.5rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.26);
}

.category-card {
  display: grid;
  place-items: center;
  gap: 0.85rem;
  min-height: 9.4rem;
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
  transition: background-color 180ms ease, transform 180ms ease;
}

.category-card:last-child {
  border-right: 0;
}

.category-card:hover,
.category-card:focus-visible {
  background: rgba(24, 55, 95, 0.06);
  transform: translateY(-2px);
}

.category-card__icon {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24, 55, 95, 0.32);
  border-radius: 999px;
  color: var(--color-indigo-deep);
  font-size: 1.45rem;
  background: rgba(255, 255, 255, 0.6);
}

.category-card__label {
  color: var(--color-indigo-deep);
  font-size: 1.35rem;
  font-weight: 700;
}

.highlights {
  padding: 0 0 2.6rem;
}

.section-frame--split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.68fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(24, 55, 95, 0.08);
  background: rgba(255, 253, 247, 0.54);
  box-shadow: 0 18px 42px rgba(20, 31, 49, 0.06);
}

.news-panel {
  color: #f8f3ea;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    linear-gradient(145deg, #17355f, #0d2345);
}

.news-panel__body {
  padding: 1rem 2rem 2rem;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--color-indigo-deep);
  font-size: clamp(2.1rem, 3.4vw, 3.3rem);
  letter-spacing: 0.12em;
}

.section-heading--panel {
  justify-content: center;
  padding: 2rem 2rem 1.15rem;
}

.section-heading--panel h2 {
  color: inherit;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(248, 243, 234, 0.6);
}

.section-heading--lined {
  padding: 1.8rem 1.9rem 1.2rem;
}

.section-heading--lined h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.section-heading--lined h2::before,
.section-heading--lined h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(24, 55, 95, 0.25);
}

.section-link {
  color: var(--color-indigo-deep);
  font-size: 1.1rem;
  font-weight: 700;
}

.section-link:hover,
.section-link:focus-visible,
.button-link:hover,
.button-link:focus-visible,
.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.news-list {
  display: grid;
  gap: 1.1rem;
  margin: 0 0 1.8rem;
  padding: 0;
  list-style: none;
}

.news-list__item p {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.8;
}

.news-list__item--waiting {
  padding-top: 0.3rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  min-height: 3.5rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid currentColor;
  font-size: 1.12rem;
  font-weight: 700;
}

.items-panel {
  padding-bottom: 1.8rem;
}

.items-placeholder {
  display: grid;
  gap: 1.6rem;
  padding: 0 1.9rem;
}

.items-placeholder__copy {
  padding: 0.3rem 0 0.2rem;
}

.items-placeholder__status,
.items-placeholder__lead,
.items-placeholder__text {
  margin: 0;
}

.items-placeholder__status {
  color: var(--color-indigo-deep);
  font-size: 2rem;
  font-weight: 700;
}

.items-placeholder__lead {
  margin-top: 0.35rem;
  color: var(--color-indigo-deep);
  font-size: 1.4rem;
  font-weight: 700;
}

.items-placeholder__text {
  margin-top: 0.8rem;
  font-size: 1.1rem;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.placeholder-card {
  min-height: 17rem;
  padding: 1.2rem 1rem 1rem;
  border: 1px solid rgba(24, 55, 95, 0.12);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 223, 182, 0.18), transparent 16%),
    linear-gradient(145deg, #4a3a28, #7a6347 58%, #403223);
  color: #f8f2e8;
  box-shadow: 0 16px 32px rgba(34, 29, 22, 0.16);
}

.placeholder-card__icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 4.4rem;
  border: 1px solid rgba(248, 242, 232, 0.42);
  border-radius: 999px;
  font-size: 1.7rem;
}

.placeholder-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.placeholder-card p {
  margin: 0.35rem 0 0;
  font-size: 1rem;
}

.site-footer {
  color: #f4efe4;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(180deg, #13315d, #0d2345);
}

.site-footer__inner {
  padding: 1.4rem 0 1.6rem;
  text-align: center;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.4rem;
  margin-bottom: 0.6rem;
}

.site-footer__nav a,
.site-footer__copyright {
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .hero__display {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: stretch;
  }

  .artifact {
    width: auto;
  }

  .section-frame--split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .site-header {
    padding-top: 1rem;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-brand__ruby {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .site-nav__list {
    justify-content: flex-start;
    gap: 0.7rem 1rem;
  }

  .site-nav a {
    font-size: 1rem;
  }

  .hero {
    padding-top: 1.2rem;
  }

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

  .hero__content {
    padding: 2.2rem 0.2rem 2.7rem;
  }

  .hero__ruby {
    font-size: 1.06rem;
    letter-spacing: 0.38em;
    text-indent: 0.38em;
  }

  .hero__text br {
    display: none;
  }

  .hero__note {
    font-size: 0.95rem;
  }

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

  .category-card {
    min-height: auto;
    grid-template-columns: auto 1fr;
    justify-content: start;
    text-align: left;
    padding: 1rem 1.1rem;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .category-card:last-child {
    border-bottom: 0;
  }

  .category-card__label {
    font-size: 1.22rem;
  }

  .section-heading--lined {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading--lined h2 {
    width: 100%;
  }

  .section-heading--lined h2::before,
  .section-heading--lined h2::after {
    display: none;
  }

  .news-panel__body,
  .section-heading--lined,
  .items-placeholder {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

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

  .placeholder-card {
    min-height: 13rem;
  }

  .placeholder-card__icon {
    margin-bottom: 2.6rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}


.subhero {
  position: relative;
  padding: 1.5rem 0 2.2rem;
}

.subhero__watercolor {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.42;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 35%, rgba(113, 134, 163, 0.44), transparent 28%),
    radial-gradient(circle at 62% 50%, rgba(113, 134, 163, 0.28), transparent 30%),
    radial-gradient(circle at 50% 72%, rgba(141, 158, 182, 0.18), transparent 30%);
}

.subhero__watercolor--left {
  top: -3rem;
  left: 4%;
  width: 18rem;
  height: 18rem;
}

.subhero__watercolor--right {
  top: 1rem;
  right: 8%;
  width: 16rem;
  height: 16rem;
}

.subhero__inner {
  position: relative;
  padding: 2.6rem 0 0.2rem;
  text-align: center;
}

.subhero__eyebrow {
  margin: 0;
  color: var(--color-indigo-deep);
  font-size: 1.1rem;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
}

.subhero__title {
  margin: 0.9rem 0 0;
  color: var(--color-indigo-deep);
  font-size: clamp(2.8rem, 5.8vw, 4.8rem);
  line-height: 1.15;
}

.subhero__lead {
  margin: 1.2rem auto 0;
  max-width: 38rem;
  color: var(--color-indigo-deep);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 700;
}

.subhero__text {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 1.12rem;
}

.subhero__backlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid currentColor;
  color: var(--color-indigo-deep);
  font-size: 1.05rem;
  font-weight: 700;
}

.items-categories {
  padding: 0.5rem 0 2.4rem;
}

.section-heading--stacked {
  flex-direction: column;
  align-items: flex-start;
}

.section-heading--stacked h2 {
  width: 100%;
}

.section-heading--stacked p {
  margin: 0;
  font-size: 1.08rem;
}

.category-grid--items {
  margin-top: 1.3rem;
}

.items-board {
  padding: 0 0 2.8rem;
}

.items-status {
  margin-top: 1.3rem;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(24, 55, 95, 0.12);
  background: rgba(255, 253, 247, 0.62);
  box-shadow: 0 16px 36px rgba(20, 31, 49, 0.06);
}

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

.items-status__title,
.items-status__lead,
.items-status__text {
  margin: 0;
}

.items-status__title {
  color: var(--color-indigo-deep);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}

.items-status__lead {
  margin-top: 0.5rem;
  color: var(--color-indigo-deep);
  font-size: 1.3rem;
  font-weight: 700;
}

.items-status__text {
  margin-top: 0.8rem;
  font-size: 1.05rem;
}

.items-catalog {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.6rem;
}

.items-group {
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(24, 55, 95, 0.12);
  background: rgba(255, 255, 255, 0.32);
}

.items-group__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(24, 55, 95, 0.14);
}

.items-group__heading h3 {
  margin: 0;
  color: var(--color-indigo-deep);
  font-size: 1.7rem;
}

.items-group__heading p {
  margin: 0;
  color: var(--color-indigo-deep);
  font-size: 1rem;
  font-weight: 700;
}

.items-group__empty {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 1.1fr);
  gap: 1.2rem;
  align-items: stretch;
  padding-top: 1.2rem;
}

.items-group__copy {
  align-self: center;
}

.items-group__copy p {
  margin: 0;
}

.items-group__copy p + p {
  margin-top: 0.65rem;
}

.items-group__copy .is-strong {
  color: var(--color-indigo-deep);
  font-size: 1.24rem;
  font-weight: 700;
}

.items-group__decor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.items-group__ornament {
  min-height: 8.8rem;
  padding: 1rem 0.9rem;
  border: 1px solid rgba(24, 55, 95, 0.12);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 223, 182, 0.18), transparent 16%),
    linear-gradient(145deg, #4a3a28, #7a6347 58%, #403223);
  color: #f8f2e8;
}

.items-group__ornament span {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.6rem;
  border: 1px solid rgba(248, 242, 232, 0.42);
  border-radius: 999px;
  font-size: 1.35rem;
}

.items-group__ornament h4 {
  margin: 0;
  font-size: 1.18rem;
}

.items-group__ornament p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
}

.items-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  padding-top: 1.2rem;
}

.items-entry {
  padding: 1rem;
  border: 1px solid rgba(24, 55, 95, 0.12);
  background: rgba(255, 253, 247, 0.74);
}

.items-entry__status {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(24, 55, 95, 0.18);
  color: var(--color-indigo-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.items-entry h4 {
  margin: 0;
  color: var(--color-indigo-deep);
  font-size: 1.3rem;
}

.items-entry__meta,
.items-entry__description {
  margin: 0.55rem 0 0;
}

.items-entry__meta {
  font-size: 1rem;
  font-weight: 700;
}

.items-entry__description {
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .items-group__empty {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .subhero__inner {
    padding-top: 2rem;
  }

  .subhero__eyebrow {
    font-size: 1rem;
  }

  .subhero__text {
    font-size: 1.05rem;
  }

  .items-status {
    padding: 1.5rem 1rem;
  }

  .items-status__title {
    font-size: 1.7rem;
  }

  .items-status__lead {
    font-size: 1.16rem;
  }

  .items-group {
    padding: 1.2rem 1rem;
  }

  .items-group__heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .items-group__heading h3 {
    font-size: 1.45rem;
  }

  .items-group__decor {
    grid-template-columns: 1fr;
  }
}


.about-content {
  padding: 0.4rem 0 3rem;
}

.about-content__inner {
  display: grid;
  gap: 1.6rem;
}

.about-panel,
.about-card,
.about-links {
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(24, 55, 95, 0.12);
  background: rgba(255, 253, 247, 0.6);
  box-shadow: 0 16px 36px rgba(20, 31, 49, 0.05);
}

.about-copy-flow {
  max-width: 48rem;
  margin-top: 1.3rem;
}

.about-copy-flow p {
  margin: 0;
  font-size: 1.12rem;
}

.about-copy-flow p + p {
  margin-top: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.about-card h2,
.about-links h2 {
  margin: 0;
  color: var(--color-indigo-deep);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.about-list,
.about-categories {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.about-list__item,
.about-categories__item {
  padding: 1rem 1rem 1.05rem;
  border-left: 3px solid rgba(24, 55, 95, 0.35);
  background: rgba(255, 255, 255, 0.38);
}

.about-list__item h3,
.about-categories__item h3 {
  margin: 0;
  color: var(--color-indigo-deep);
  font-size: 1.32rem;
  line-height: 1.5;
}

.about-list__item p,
.about-categories__item p {
  margin: 0.55rem 0 0;
  font-size: 1.03rem;
}

.about-links__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.about-action {
  display: grid;
  gap: 0.5rem;
  min-height: 9rem;
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(24, 55, 95, 0.18);
  background: rgba(255, 255, 255, 0.36);
  color: var(--color-indigo-deep);
}

.about-action strong {
  font-size: 1.32rem;
}

.about-action span {
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-action:hover,
.about-action:focus-visible,
.subhero__backlink:hover,
.subhero__backlink:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 1100px) {
  .about-grid,
  .about-links__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-panel,
  .about-card,
  .about-links {
    padding: 1.3rem 1rem;
  }

  .about-copy-flow p {
    font-size: 1.06rem;
  }

  .about-list__item h3,
  .about-categories__item h3,
  .about-action strong {
    font-size: 1.2rem;
  }

  .about-list__item p,
  .about-categories__item p,
  .about-action span {
    font-size: 1rem;
  }
}


.owner-content {
  padding: 0.4rem 0 3rem;
}

.owner-content__inner {
  display: grid;
  gap: 1.6rem;
}

.owner-panel,
.owner-card,
.owner-links {
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(24, 55, 95, 0.12);
  background: rgba(255, 253, 247, 0.6);
  box-shadow: 0 16px 36px rgba(20, 31, 49, 0.05);
}

.owner-panel--soft {
  background: rgba(255, 255, 255, 0.42);
}

.owner-copy-flow {
  max-width: 48rem;
  margin-top: 1.3rem;
}

.owner-copy-flow p,
.owner-card__body p,
.owner-panel p {
  margin: 0;
  font-size: 1.12rem;
}

.owner-copy-flow p + p,
.owner-card__body p + p,
.owner-panel p + p {
  margin-top: 1rem;
}

.owner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.owner-card h2,
.owner-panel h2,
.owner-links h2 {
  margin: 0;
  color: var(--color-indigo-deep);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.owner-card__body {
  margin-top: 1.2rem;
}

.owner-panel__lead {
  margin-top: 1rem !important;
  color: var(--color-indigo-deep);
  font-size: 1.22rem !important;
  font-weight: 700;
}

.owner-links__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.owner-action {
  display: grid;
  gap: 0.5rem;
  min-height: 9rem;
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(24, 55, 95, 0.18);
  background: rgba(255, 255, 255, 0.36);
  color: var(--color-indigo-deep);
}

.owner-action strong {
  font-size: 1.3rem;
}

.owner-action span {
  font-size: 1.02rem;
  line-height: 1.8;
}

.owner-action:hover,
.owner-action:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 1100px) {
  .owner-grid,
  .owner-links__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .owner-panel,
  .owner-card,
  .owner-links {
    padding: 1.3rem 1rem;
  }

  .owner-copy-flow p,
  .owner-card__body p,
  .owner-panel p {
    font-size: 1.06rem;
  }

  .owner-card h2,
  .owner-panel h2,
  .owner-links h2,
  .owner-action strong {
    font-size: 1.2rem;
  }

  .owner-action span {
    font-size: 1rem;
  }
}


.news-page {
  padding: 0.4rem 0 3rem;
}

.news-page__inner {
  display: grid;
  gap: 1.6rem;
}

.news-page__panel {
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(24, 55, 95, 0.12);
  background: rgba(255, 253, 247, 0.6);
  box-shadow: 0 16px 36px rgba(20, 31, 49, 0.05);
}

.news-page__status {
  margin-top: 1.3rem;
  padding: 1.4rem 1.2rem;
  border-left: 3px solid rgba(24, 55, 95, 0.35);
  background: rgba(255, 255, 255, 0.4);
}

.news-page__status-title,
.news-page__status-text {
  margin: 0;
}

.news-page__status-title {
  color: var(--color-indigo-deep);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
}

.news-page__status-text {
  margin-top: 0.55rem;
  font-size: 1.08rem;
}

.news-page__list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.news-entry {
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(24, 55, 95, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.news-entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.news-entry__date,
.news-entry__category {
  color: var(--color-indigo-deep);
  font-size: 1rem;
  font-weight: 700;
}

.news-entry__category {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.15rem 0.6rem;
  border: 1px solid rgba(24, 55, 95, 0.18);
}

.news-entry__body h3 {
  margin: 0;
  color: var(--color-indigo-deep);
  font-size: 1.45rem;
  line-height: 1.5;
}

.news-entry__body p {
  margin: 0.65rem 0 0;
  font-size: 1.05rem;
}

.news-entry--empty {
  background: rgba(255, 253, 247, 0.72);
}

@media (max-width: 760px) {
  .news-page__panel {
    padding: 1.3rem 1rem;
  }

  .news-page__status {
    padding: 1.15rem 1rem;
  }

  .news-page__status-title {
    font-size: 1.35rem;
  }

  .news-page__status-text,
  .news-entry__body p,
  .news-entry__date,
  .news-entry__category {
    font-size: 1rem;
  }

  .news-entry {
    padding: 1.1rem 1rem;
  }

  .news-entry__body h3 {
    font-size: 1.24rem;
  }
}


.contact-page {
  padding: 0.4rem 0 3rem;
}

.contact-page__inner {
  display: grid;
  gap: 1.6rem;
}

.contact-panel,
.contact-links {
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(24, 55, 95, 0.12);
  background: rgba(255, 253, 247, 0.6);
  box-shadow: 0 16px 36px rgba(20, 31, 49, 0.05);
}

.contact-panel--soft {
  background: rgba(255, 255, 255, 0.42);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.contact-list__item {
  padding: 1rem 1rem 1.05rem;
  border-left: 3px solid rgba(24, 55, 95, 0.35);
  background: rgba(255, 255, 255, 0.38);
}

.contact-list__item h3,
.contact-panel h2,
.contact-links h2 {
  margin: 0;
  color: var(--color-indigo-deep);
}

.contact-list__item h3 {
  font-size: 1.32rem;
  line-height: 1.5;
}

.contact-list__item p,
.contact-copy-flow p,
.contact-panel p {
  margin: 0.55rem 0 0;
  font-size: 1.06rem;
}

.contact-copy-flow p:first-child,
.contact-panel p:first-of-type {
  margin-top: 1rem;
}

.contact-copy-flow p + p,
.contact-panel p + p {
  margin-top: 0.9rem;
}

.contact-panel__lead {
  color: var(--color-indigo-deep);
  font-size: 1.22rem !important;
  font-weight: 700;
}

.contact-links__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-action {
  display: grid;
  gap: 0.5rem;
  min-height: 9rem;
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(24, 55, 95, 0.18);
  background: rgba(255, 255, 255, 0.36);
  color: var(--color-indigo-deep);
}

.contact-action strong {
  font-size: 1.3rem;
}

.contact-action span {
  font-size: 1.02rem;
  line-height: 1.8;
}

.contact-action:hover,
.contact-action:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 1100px) {
  .contact-links__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-panel,
  .contact-links {
    padding: 1.3rem 1rem;
  }

  .contact-list__item h3,
  .contact-panel h2,
  .contact-links h2,
  .contact-action strong {
    font-size: 1.2rem;
  }

  .contact-list__item p,
  .contact-copy-flow p,
  .contact-panel p,
  .contact-action span {
    font-size: 1rem;
  }
}
