:root {
  --bg: #f5f2ea;
  --surface: #ffffff;
  --ink: #1f1a17;
  --ink-soft: #5d554f;
  --accent: #9b1b30;
  --accent-soft: #e8d5ca;
  --line: #ded5ca;
  --shadow: 0 16px 40px rgba(31, 26, 23, 0.12);
  --radius: 18px;
  --container: min(1120px, 92vw);
  --drawer-width: min(380px, 92vw);
  --section-space: clamp(4.5rem, 8vw, 6.5rem);
  --section-title-size: clamp(2rem, 3.2vw, 2.9rem);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #f9f6f1 0%, #f2ece3 35%, #eee6dc 100%);
  line-height: 1.7;
}

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

a {
  color: inherit;
}

a,
button,
select {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(155, 27, 48, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: rgba(243, 242, 248, 0.76);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(159, 147, 134, 0.25);
  transition: transform 0.28s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.notice {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  border-top: 2px solid #c0c7d5;
  background: repeating-linear-gradient(
    -35deg,
    rgba(247, 242, 231, 0.95),
    rgba(247, 242, 231, 0.95) 6px,
    rgba(243, 235, 221, 0.95) 6px,
    rgba(243, 235, 221, 0.95) 12px
  );
}

.notice-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.75rem 1rem;
  align-items: center;
  min-height: 40px;
}

.notice-label {
  margin: 0;
  color: #1f1a17;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: normal;
}

.notice time {
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  border-left: 1px solid #d2c8ba;
  padding-left: 1rem;
}

.notice a {
  color: #2f2925;
  text-decoration: none;
}

.notice a:hover {
  text-decoration: underline;
}

.notice a:focus-visible {
  outline-offset: 2px;
}

main {
  padding-top: 88px;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.header-left-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.header-left-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}

.header-left-links a:hover {
  color: var(--accent);
}

.header-left-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.header-left-links a:hover::after,
.header-left-links a:focus-visible::after {
  transform: scaleX(1);
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand img {
  width: 90px;
  height: auto;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  z-index: 85;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--drawer-width);
  height: 100dvh;
  background: rgba(243, 242, 248, 0.86);
  backdrop-filter: blur(10px);
  border-left: 1px solid #ddd4c8;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1200;
  overflow-y: auto;
}

.global-nav.is-open {
  transform: translateX(0);
}

.menu-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid #e8dfd3;
}

.menu-language {
  color: #2f2925;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.menu-language select {
  border: 1px solid #d4c8b8;
  background: #f1eef8;
  color: #3f394f;
  padding: 0.3rem 0.4rem;
  font-size: 0.9rem;
}

.menu-close {
  border: 0;
  background: transparent;
  color: #2f2925;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
}

.menu-member-links {
  padding: 0.8rem 1rem 1rem;
  border-bottom: 1px solid #e8dfd3;
  background: rgba(255, 255, 255, 0.52);
}

.menu-member-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d8cfc1;
  color: #2f2925;
  text-decoration: none;
  padding: 0.8rem 0.9rem;
  font-size: 0.95rem;
  margin-top: 0.65rem;
}

.menu-member-links a:first-child {
  margin-top: 0;
}

.menu-member-links a::after {
  content: ">";
  color: #7e7588;
}

.menu-drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(244, 243, 248, 0.74);
}

.menu-drawer-list a {
  display: block;
  padding: 0.86rem 1rem;
  text-decoration: none;
  color: #2f2925;
  font-size: 1.02rem;
  position: relative;
}

.menu-drawer-list li + li {
  border-top: 1px solid #e2dce9;
}

.menu-drawer-list a::after {
  content: ">";
  position: absolute;
  right: 1rem;
  color: #9f96ad;
}

.menu-drawer-list a:hover {
  background: #ebe7f4;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 15, 12, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1050;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: stretch;
  margin-bottom: 0;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat var(--image);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.42), rgba(63, 33, 17, 0.25));
}

.notice {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(243, 242, 248, 0.76);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(236, 228, 214, 0.95);
}

.notice-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.75rem 1rem;
  align-items: center;
  min-height: 46px;
  padding: 0.2rem 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  align-self: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 9rem 0 6rem;
}

.hero-logo {
  width: 220px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin: 0;
  line-height: 1.25;
}

.hero p {
  margin: 1rem 0 1.4rem;
  max-width: 42ch;
  font-size: 1.05rem;
}

.hero-contact-rail {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  background: rgba(82, 58, 127, 0.92);
  padding: 1.2rem 0.7rem;
  box-shadow: 0 14px 30px rgba(33, 20, 56, 0.18);
}

.hero-contact-rail:hover {
  background: rgba(70, 48, 114, 0.96);
}

.hero-quick-panels {
  position: absolute;
  right: min(5vw, 60px);
  bottom: 2rem;
  z-index: 3;
  width: min(380px, calc(100% - 2rem));
}

.hero-panel {
  margin: 0.65rem 0 0;
  background: rgba(93, 85, 63, 0.72);
  color: #f8f4ec;
  border: 1px solid rgba(243, 236, 221, 0.22);
  backdrop-filter: blur(2px);
  box-shadow: 0 14px 26px rgba(27, 21, 13, 0.14);
}

.hero-panel summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1rem;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-panel summary::-webkit-details-marker {
  display: none;
}

.hero-panel summary::after {
  content: "\2304";
  font-size: 1.1rem;
  line-height: 1;
}

.hero-panel[open] summary::after {
  transform: rotate(180deg);
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0 1rem 0.9rem;
}

.hero-panel li + li {
  margin-top: 0.45rem;
}

.hero-panel a {
  color: #fff;
  text-decoration: none;
  font-size: 0.93rem;
  opacity: 0.92;
}

.hero-panel a:hover {
  opacity: 1;
  text-decoration: underline;
}

.section {
  padding: var(--section-space) 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.8));
}

.section-about {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9fb 100%);
}

.section-about::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(38vw, 520px);
  height: 48%;
  background: #f2f0f1;
  z-index: 0;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 2.8rem;
  align-items: center;
}

.about-copy h2 {
  position: relative;
  font-size: var(--section-title-size);
  margin-bottom: 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #c9d0e0;
}

.about-copy h2::before {
  content: "✿";
  font-size: 1.5rem;
  color: #d6d8e8;
  margin-right: 0.6rem;
  vertical-align: middle;
}

.about-copy p {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 30ch;
  margin-bottom: 2rem;
}

.about-btn {
  min-width: 240px;
  border-radius: 0;
  border-color: #cfc8bc;
  color: #2c2521;
  justify-content: space-between;
  padding-inline: 1.2rem;
}

.about-btn::after {
  content: ">";
  color: #8a8396;
  margin-left: 1rem;
}

.about-visual {
  margin: 0;
  position: relative;
}

.about-visual img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.section-learn {
  position: relative;
  background: linear-gradient(90deg, #f4f4fa 0%, #f4f4fa 74%, #ffffff 74%, #ffffff 100%);
  overflow: hidden;
}

.learn-shell {
  position: relative;
}

.learn-intro h2 {
  position: relative;
  font-size: var(--section-title-size);
  margin-bottom: 1.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #c9d0e0;
}

.learn-intro h2::before {
  content: "✿";
  font-size: 1.5rem;
  color: #d6d8e8;
  margin-right: 0.6rem;
  vertical-align: middle;
}

.learn-intro .lead {
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 2.4rem;
}

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

.learn-card {
  position: relative;
}

.learn-card-media {
  margin: 0;
}

.learn-card-media img {
  width: 100%;
  height: clamp(280px, 30vw, 390px);
  object-fit: cover;
  display: block;
}

.learn-card-body {
  position: relative;
  width: min(92%, 540px);
  margin: -5.6rem auto 0;
  background: #fff;
  padding: 2rem 2.2rem 1.9rem;
  box-shadow: 0 18px 40px rgba(31, 26, 23, 0.12);
}

.learn-card-body h3 {
  margin: 0 0 1rem;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.learn-card-body h3::before {
  content: "";
  width: 64px;
  height: 1px;
  background: #bfc6d6;
  flex: 0 0 auto;
}

.learn-card-body p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #2e2925;
  margin: 0;
}

.learn-card-body a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.section-events {
  background: #fff;
}

.events-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.events-title-row h2 {
  position: relative;
  margin: 0;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #c9d0e0;
  font-size: var(--section-title-size);
}

.events-title-row h2::before {
  content: "✿";
  font-size: 1.5rem;
  color: #d6d8e8;
  margin-right: 0.6rem;
  vertical-align: middle;
}

.events-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  border: 1px solid #cfc8bc;
  color: #2c2521;
  text-decoration: none;
  padding: 0.72rem 1rem;
  background: #fff;
}

.events-view-all:hover,
.news-view-all:hover,
.about-btn:hover {
  border-color: #bbaea0;
  box-shadow: 0 10px 20px rgba(31, 26, 23, 0.07);
}

.events-view-all::after {
  content: ">";
  margin-left: 0.8rem;
  color: #8a8396;
}

.events-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem 2.2rem;
}

.event-item {
  min-width: 0;
}

.event-link {
  display: grid;
  grid-template-columns: minmax(180px, 210px) 1fr;
  gap: 1.2rem;
  color: inherit;
  text-decoration: none;
  align-items: start;
}

.event-item:hover .event-thumb img {
  transform: scale(1.02);
}

.event-thumb {
  margin: 0;
  background: #ecebf1;
  overflow: hidden;
}

.event-thumb img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.event-info {
  min-width: 0;
}

.event-tag {
  display: inline-block;
  margin: 0 0 0.5rem;
  border: 1px solid #d4c9b9;
  padding: 0.16rem 0.5rem;
  font-size: 0.82rem;
  color: #4a4139;
}

.event-info h5 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.event-meta {
  margin: 0;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.35rem 0.45rem;
}

.event-meta dt,
.event-meta dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.event-meta dt {
  background: #ecebf0;
  color: #45413d;
  font-weight: 700;
  text-align: center;
  padding: 0.2rem 0.35rem;
}

.event-meta dd {
  color: #6d6660;
  align-self: center;
}

.section h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  margin: 0 0 1rem;
}

.lead {
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.cards {
  display: grid;
  gap: 1.3rem;
}

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

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-body {
  padding: 1rem 1rem 1.2rem;
}

.card h3 {
  margin: 0.2rem 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.card a {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.card.compact .meta {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-news {
  background: #f4f4fa;
}

.news-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.news-title-row h2 {
  position: relative;
  margin: 0;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #c9d0e0;
  font-size: var(--section-title-size);
}

.news-title-row h2::before {
  content: "✿";
  font-size: 1.5rem;
  color: #d6d8e8;
  margin-right: 0.6rem;
  vertical-align: middle;
}

.news-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  border: 1px solid #cfc8bc;
  color: #2c2521;
  text-decoration: none;
  padding: 0.72rem 1rem;
  background: #fff;
}

.news-view-all::after {
  content: ">";
  margin-left: 0.8rem;
  color: #8a8396;
}

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

.news-card-item {
  min-width: 0;
}

.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 26, 23, 0.06);
}

.news-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(31, 26, 23, 0.1);
}

.news-card-media {
  margin: 0;
}

.news-card-media img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 1rem 1rem 1.2rem;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.news-badge {
  display: inline-block;
  background: #b8b6d0;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1;
  padding: 0.35rem 0.45rem;
}

.news-card-meta time {
  color: #8b847d;
  font-variant-numeric: tabular-nums;
}

.news-card-body h5 {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 700;
}

.section-related {
  background: #fff;
}

.related-title-row {
  margin-bottom: 1.8rem;
}

.related-title-row h2 {
  position: relative;
  margin: 0;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #c9d0e0;
  font-size: var(--section-title-size);
}

.related-title-row h2::before {
  content: "✿";
  font-size: 1.5rem;
  color: #d6d8e8;
  margin-right: 0.6rem;
  vertical-align: middle;
}

.related-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.related-banner {
  display: block;
  text-decoration: none;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 26, 23, 0.06);
}

.related-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(31, 26, 23, 0.1);
}

.related-banner img {
  width: 100%;
  aspect-ratio: 1 / 0.62;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.related-banner:hover img {
  transform: scale(1.02);
}

.related-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.related-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #dddde8;
}

.related-dots .is-active {
  background: #9692bb;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  color: var(--accent);
  border: 1px solid var(--accent);
}

.site-footer {
  background: #f1f1f8;
  color: #25211d;
  padding: 4rem 0 1.2rem;
}

.footer-shell {
  display: grid;
  gap: 2.6rem;
}

.footer-top-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2.2rem;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.footer-logo {
  width: 110px;
  height: auto;
}

.footer-brand-copy {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  color: #1f1a17;
}

.footer-separator {
  color: #8d8b95;
}

.footer-social-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.4rem;
}

.footer-social-line {
  height: 1px;
  background: #d3d6df;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-links a {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-decoration: none;
  color: #2b2622;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(38, 33, 29, 0.06);
  font-weight: 700;
}

.footer-social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(38, 33, 29, 0.12);
}

.footer-social-links a[aria-label="Instagram"] {
  color: #d84d8f;
}

.footer-social-links a[aria-label="Facebook"] {
  color: #3557a5;
}

.footer-social-links a[aria-label="X"] {
  color: #111;
}

.footer-social-links a[aria-label="YouTube"] {
  color: #de2a2a;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 1fr;
  gap: 2rem 3rem;
}

.footer-col h3,
.footer-highlight-link {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f0d0c;
}

.footer-subhead {
  margin-top: 1.8rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a,
.footer-highlight-link a {
  color: #72707c;
  text-decoration: none;
}

.footer-highlight-link a,
.footer-col h3 {
  color: #11100f;
}

.footer-col a:hover,
.footer-highlight-link a:hover,
.footer-legal-links a:hover {
  text-decoration: underline;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d9dbe3;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-legal-links a {
  color: #8f8b95;
  text-decoration: none;
}

.copyright {
  margin: 0;
  font-size: 0.88rem;
  color: #8f8b95;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 0.85rem;
  background: rgba(38, 33, 29, 0.9);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 12px 24px rgba(31, 26, 23, 0.14);
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover {
  background: rgba(38, 33, 29, 0.98);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-wrap {
    min-height: 72px;
  }

  main {
    padding-top: 72px;
  }

  .header-left-links {
    display: none;
  }

  .brand img {
    width: 82px;
  }

  .menu-toggle span {
    width: 28px;
  }

  .global-nav {
    width: min(360px, 92vw);
  }

  .split,
  .about-layout,
  .learn-grid,
  .events-list,
  .news-grid-cards,
  .two-col,
  .three-col,
  .related-strip {
    grid-template-columns: 1fr;
  }

  .events-title-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 1.2rem;
  }

  .events-view-all {
    min-width: 0;
    width: 100%;
  }

  .event-link {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .event-thumb img {
    min-height: 220px;
  }

  .event-info h5 {
    font-size: 1.1rem;
  }

  .section-learn {
    background: #f4f4fa;
  }

  .learn-intro .lead {
    max-width: none;
    margin-bottom: 1.4rem;
  }

  .learn-card-body {
    width: min(94%, 560px);
    margin-top: -3.4rem;
    padding: 1.4rem 1.3rem 1.2rem;
  }

  .learn-card-body h3 {
    font-size: 1.35rem;
    gap: 0.65rem;
  }

  .learn-card-body h3::before {
    width: 44px;
  }

  .news-title-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 1.2rem;
  }

  .news-view-all {
    min-width: 0;
    width: 100%;
  }

  .section {
    padding: 3.8rem 0;
  }

  .notice {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .notice-inner {
    grid-template-columns: 1fr;
    gap: 0.1rem;
    padding: 0;
    min-height: 0;
  }

  .notice time {
    border-left: 0;
    padding-left: 0;
  }

  .hero-content {
    padding: 6.5rem 0 4.5rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .hero p {
    font-size: 0.98rem;
  }

  .footer-top-row,
  .footer-nav-grid,
  .footer-bottom-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .footer-brand-copy {
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .footer-social-strip {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1rem;
  }

  .footer-social-line {
    display: none;
  }

  .footer-social-links {
    justify-content: flex-start;
  }

  .footer-social-links a {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .footer-nav-grid {
    display: grid;
    gap: 1.8rem;
  }

  .footer-bottom-row {
    display: flex;
  }

  .footer-legal-links {
    gap: 0.9rem 1.2rem;
  }

  .related-title-row {
    margin-bottom: 1.2rem;
  }

  .related-banner img {
    aspect-ratio: 1 / 0.7;
  }

  .related-dots {
    gap: 0.5rem;
  }

  .hero-content {
    padding: 7rem 0 5rem;
  }

  .hero-contact-rail {
    display: none;
  }

  .hero-quick-panels {
    right: 1rem;
    left: 1rem;
    width: auto;
    bottom: 1.2rem;
  }

  .hero-panel summary {
    font-size: 0.98rem;
  }

  .about-copy p {
    max-width: none;
  }

  .about-btn {
    min-width: 0;
    width: 100%;
  }
}
