:root {
  --ink: #211c2c;
  --muted: #746779;
  --purple: #5d4278;
  --purple-deep: #432d61;
  --purple-soft: #8b6ca3;
  --cream: #fbf6ee;
  --paper: #f6eadc;
  --line: #e2d4c5;
  --white: #fffdf8;
  --gold: #9d7652;
  --shadow: 0 18px 45px rgba(84, 61, 48, 0.13);
  --soft-shadow: 0 10px 28px rgba(78, 57, 43, 0.12);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Times New Roman", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 16%, rgba(255,255,255,0.86), transparent 26rem),
    linear-gradient(180deg, #fffaf4 0%, var(--cream) 54%, #fffaf4 100%);
  font-family: var(--serif);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid rgba(113, 82, 60, 0.16);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1180px;
  min-height: 86px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  min-width: 286px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: block;
  flex: 0 0 auto;
  box-sizing: border-box;
  object-fit: contain;
  opacity: 0.86;
  filter: drop-shadow(0 4px 10px rgba(83, 56, 106, 0.12));
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.2;
}

.brand-name {
  font-size: 25px;
  letter-spacing: 0;
  font-weight: 700;
  white-space: nowrap;
}

.brand-en {
  font-size: 10px;
  letter-spacing: .06em;
  color: #4f4556;
  font-weight: 600;
  white-space: nowrap;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
  padding: 30px 0;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.global-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.global-nav .is-active {
  color: var(--purple);
}

.global-nav .is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-button {
  display: none;
}

.mobile-only-nav {
  display: none;
}

.primary-button:active,
.footer-button:active,
.circle-link:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 468px;
  background:
    radial-gradient(circle at 72% 62%, rgba(255,255,255,.95), transparent 18rem),
    radial-gradient(circle at 35% 44%, rgba(255,255,255,.75), transparent 28rem),
    linear-gradient(100deg, #fbf0e2 0%, #fff6ec 42%, #f2e2cf 100%);
  border-bottom: 1px solid rgba(128, 97, 74, 0.1);
}

.paper-grain {
  position: absolute;
  inset: 0;
  opacity: .65;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 22% 19%, rgba(120, 82, 51, .08) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 34%, rgba(120, 82, 51, .06) 0 1px, transparent 1px),
    radial-gradient(circle at 44% 66%, rgba(255,255,255,.7) 0 1px, transparent 1px);
  background-size: 34px 34px, 46px 46px, 28px 28px;
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 58px;
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  align-items: center;
  gap: 24px;
}

.hero-copy {
  padding-left: 62px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #2f2848;
  font-size: clamp(40px, 4.1vw, 52px);
  line-height: 1.34;
  font-weight: 600;
  letter-spacing: .01em;
}

.hero-lead {
  margin: 28px 0 32px;
  font-size: 18px;
  line-height: 2;
  color: #332d3e;
  letter-spacing: .05em;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 290px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(141, 105, 165, .96), rgba(76, 49, 105, .98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 13px 25px rgba(66, 42, 91, 0.26);
  font-size: 16px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-button span {
  font-size: 28px;
  line-height: 1;
}

.primary-button:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 16px 34px rgba(66, 42, 91, 0.32);
  transform: translateY(-1px);
}

.hero-art {
  position: relative;
  min-height: 360px;
}

.polaroid {
  position: absolute;
  margin: 0;
  padding: 12px 12px 24px;
  background: #fffdf7;
  box-shadow: 0 18px 26px rgba(53, 38, 31, .24);
  border: 1px solid rgba(99, 75, 59, .13);
  z-index: 3;
}

.photo-large {
  width: 285px;
  height: 330px;
  top: 0;
  left: 66px;
  transform: rotate(-9deg);
}

.photo-small {
  width: 270px;
  height: 235px;
  top: 42px;
  right: 18px;
  transform: rotate(9deg);
  z-index: 4;
}

.photo-wide {
  width: 315px;
  height: 215px;
  right: 145px;
  bottom: 8px;
  transform: rotate(-7deg);
  z-index: 5;
}

.photo-scene {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #9a7d59;
  filter: sepia(.75) contrast(1.05) saturate(.68);
}

.photo-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255,255,255,.25), transparent 35%, rgba(27,18,14,.25)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 5px);
  mix-blend-mode: overlay;
}

.church-scene {
  background:
    linear-gradient(180deg, #e1d1b1 0 42%, #78634c 42% 100%);
}

.church-body {
  position: absolute;
  left: 86px;
  bottom: 42px;
  width: 92px;
  height: 185px;
  background: linear-gradient(90deg, #f1e7cf, #ccb38c);
  clip-path: polygon(50% 0, 90% 25%, 90% 100%, 10% 100%, 10% 25%);
  box-shadow: inset -14px 0 rgba(92, 66, 48, .18);
}

.church-roof {
  position: absolute;
  left: 71px;
  bottom: 205px;
  width: 122px;
  height: 36px;
  background: #3b3028;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.church-door {
  position: absolute;
  left: 117px;
  bottom: 42px;
  width: 28px;
  height: 50px;
  border-radius: 20px 20px 0 0;
  background: #3b2d24;
  box-shadow:
    -34px -58px 0 -7px #4e3b2e,
    36px -58px 0 -7px #4e3b2e,
    0 -103px 0 -8px #4e3b2e;
}

.church-cross {
  position: absolute;
  left: 128px;
  bottom: 245px;
  width: 4px;
  height: 34px;
  background: #3b3028;
}

.church-cross::after {
  content: "";
  position: absolute;
  left: -9px;
  top: 9px;
  width: 22px;
  height: 4px;
  background: #3b3028;
}

.tree {
  position: absolute;
  bottom: 34px;
  width: 82px;
  height: 195px;
  background:
    radial-gradient(circle at 50% 12%, #2e3327 0 25px, transparent 26px),
    radial-gradient(circle at 22% 35%, #323826 0 35px, transparent 36px),
    radial-gradient(circle at 70% 40%, #20271e 0 38px, transparent 39px),
    linear-gradient(90deg, transparent 45%, #33291f 46% 55%, transparent 56%);
}

.tree-left {
  left: -11px;
}

.tree-right {
  right: -13px;
  transform: scale(.9);
}

.group-scene {
  background:
    linear-gradient(180deg, #d8c7a6 0 58%, #654d39 58% 100%);
}

.wall-line {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 42px;
  height: 72px;
  border: 4px solid rgba(64, 47, 34, .45);
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.16);
}

.group-row {
  position: absolute;
  left: 22px;
  right: 22px;
  height: 62px;
  background:
    radial-gradient(circle at 8% 21%, #32271f 0 10px, transparent 11px),
    radial-gradient(circle at 23% 21%, #32271f 0 10px, transparent 11px),
    radial-gradient(circle at 39% 21%, #32271f 0 10px, transparent 11px),
    radial-gradient(circle at 55% 21%, #32271f 0 10px, transparent 11px),
    radial-gradient(circle at 72% 21%, #32271f 0 10px, transparent 11px),
    radial-gradient(circle at 89% 21%, #32271f 0 10px, transparent 11px),
    radial-gradient(ellipse at 8% 78%, #1e1a19 0 18px, transparent 19px),
    radial-gradient(ellipse at 23% 78%, #3a2b22 0 18px, transparent 19px),
    radial-gradient(ellipse at 39% 78%, #1e1a19 0 18px, transparent 19px),
    radial-gradient(ellipse at 55% 78%, #3a2b22 0 18px, transparent 19px),
    radial-gradient(ellipse at 72% 78%, #1e1a19 0 18px, transparent 19px),
    radial-gradient(ellipse at 89% 78%, #3a2b22 0 18px, transparent 19px);
}

.row-back {
  bottom: 60px;
  opacity: .86;
}

.row-front {
  bottom: 24px;
  transform: scale(1.08);
}

.bench-scene {
  background:
    linear-gradient(180deg, #c7b493 0 48%, #574332 48% 100%);
}

.bench {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 44px;
  height: 18px;
  background: #33261e;
  box-shadow: 0 32px 0 #2a2019;
}

.seated {
  position: absolute;
  bottom: 62px;
  width: 35px;
  height: 70px;
  background:
    radial-gradient(circle at 50% 9px, #2e2721 0 9px, transparent 10px),
    linear-gradient(180deg, transparent 18px, #2f2828 19px 70px);
  border-radius: 16px 16px 6px 6px;
}

.seated::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -31px;
  height: 35px;
  border-radius: 0 0 20px 20px;
  border-bottom: 7px solid #201918;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}

.s1 { left: 33px; transform: rotate(-5deg); }
.s2 { left: 84px; transform: rotate(4deg); }
.s3 { left: 138px; transform: rotate(-2deg); }
.s4 { left: 192px; transform: rotate(4deg); }
.s5 { left: 244px; transform: rotate(-4deg); }

.lily-cluster,
.cta-lily,
.footer-lily {
  position: absolute;
  width: 250px;
  height: 210px;
  pointer-events: none;
}

.lily-main {
  left: -18px;
  bottom: -14px;
  z-index: 7;
  transform: rotate(-8deg);
}

.lily-side {
  right: -18px;
  bottom: 18px;
  width: 210px;
  height: 175px;
  z-index: 2;
  transform: rotate(12deg) scale(.82);
}

.stem {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 3px;
  height: 185px;
  background: linear-gradient(#99a778, #596d42);
  border-radius: 999px;
  transform: rotate(-34deg);
  transform-origin: bottom;
}

.stem::before,
.stem::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, #6f834e, transparent);
  transform-origin: left center;
}

.stem::before {
  top: 68px;
  left: 0;
  transform: rotate(34deg);
}

.stem::after {
  top: 112px;
  left: 0;
  transform: rotate(-30deg);
}

.bloom {
  position: absolute;
  width: 96px;
  height: 82px;
  filter: drop-shadow(0 9px 12px rgba(107, 77, 53, .16));
}

.bloom i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 62px;
  margin-left: -11px;
  margin-top: -31px;
  background: radial-gradient(ellipse at 60% 22%, #fff 0 26%, #f9f3e8 58%, #d8cab6 100%);
  border-radius: 80% 12% 80% 12%;
  transform-origin: 50% 78%;
}

.bloom i:nth-child(1) { transform: rotate(-72deg) translateY(-10px); }
.bloom i:nth-child(2) { transform: rotate(-33deg) translateY(-14px); }
.bloom i:nth-child(3) { transform: rotate(0deg) translateY(-18px); }
.bloom i:nth-child(4) { transform: rotate(36deg) translateY(-14px); }
.bloom i:nth-child(5) { transform: rotate(73deg) translateY(-10px); }

.bloom::before {
  content: "";
  position: absolute;
  left: 48%;
  top: 47%;
  width: 7px;
  height: 30px;
  border-radius: 999px;
  background: #b78346;
  transform: rotate(10deg);
  z-index: 2;
}

.bloom::after {
  content: "";
  position: absolute;
  left: 41%;
  top: 43%;
  width: 34px;
  height: 22px;
  background:
    radial-gradient(circle at 18% 44%, #915f31 0 2px, transparent 3px),
    radial-gradient(circle at 46% 25%, #915f31 0 2px, transparent 3px),
    radial-gradient(circle at 72% 51%, #915f31 0 2px, transparent 3px);
  z-index: 3;
}

.bloom-a { left: 69px; top: 48px; transform: rotate(-20deg) scale(1.06); }
.bloom-b { left: 130px; top: 96px; transform: rotate(18deg) scale(.82); }
.bloom-c { left: 42px; top: 118px; transform: rotate(-44deg) scale(.76); }

.petal {
  position: absolute;
  width: 52px;
  height: 18px;
  border-radius: 80% 10% 80% 10%;
  background: linear-gradient(100deg, #fff, #e8ddcf);
  box-shadow: 0 9px 15px rgba(88, 64, 47, .12);
  opacity: .74;
}

.petal-1 { left: 135px; top: 116px; transform: rotate(18deg); }
.petal-2 { left: 48px; bottom: 78px; transform: rotate(-18deg) scale(1.15); }
.petal-3 { right: 93px; top: 98px; transform: rotate(-28deg); }
.petal-4 { right: 287px; bottom: 84px; transform: rotate(34deg) scale(.85); }

.quick-links {
  position: relative;
  z-index: 8;
  max-width: 1088px;
  margin: -32px auto 0;
  padding: 0 24px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(255, 253, 249, .94);
  border: 1px solid rgba(133, 104, 83, .22);
  border-radius: 13px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-item {
  min-height: 138px;
  padding: 25px 14px 22px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  text-align: center;
  border-right: 1px solid rgba(114, 88, 70, .16);
  transition: background .2s ease, transform .2s ease;
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item svg {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  color: var(--purple);
}

.quick-item strong {
  font-size: 15px;
  line-height: 1.4;
}

.quick-item span {
  color: #8c807b;
  font-size: 12px;
  font-family: var(--sans);
}

.quick-item:hover {
  background: #fbf1e7;
  transform: translateY(-1px);
}

.section {
  max-width: 1088px;
  margin: 0 auto;
  padding: 44px 24px 0;
}

.section h2,
.member-cta h2,
.footer-column h2,
.footer-social h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: .04em;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
}

.section-heading h2,
.recommend-section h2 {
  font-size: 27px;
}

.section-heading a {
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-row {
  min-height: 56px;
  display: grid;
  grid-template-columns: 104px 76px 1fr 24px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.news-row:hover {
  background: rgba(255,255,255,.45);
}

.news-row time {
  color: #8a5b37;
  font-size: 15px;
  font-weight: 700;
}

.tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 64px;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(180deg, #74568e, #4f346d);
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 700;
}

.news-text {
  font-size: 16px;
}

.row-arrow {
  color: var(--purple);
  font-size: 30px;
  text-align: right;
}

.recommend-section {
  padding-top: 37px;
}

.card-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.content-card {
  overflow: hidden;
  min-height: 304px;
  background: rgba(255, 253, 248, .8);
  border: 1px solid rgba(150, 115, 87, .24);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(91, 65, 48, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(91, 65, 48, .14);
}

.card-image {
  position: relative;
  height: 150px;
  overflow: hidden;
  border-bottom: 1px solid rgba(150, 115, 87, .18);
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.18), transparent 44%, rgba(68,44,25,.12));
}

.image-chapel {
  background:
    radial-gradient(circle at 20% 78%, #f9f4e9 0 28px, transparent 29px),
    linear-gradient(180deg, #c0a688 0, #947557 100%);
}

.image-chapel .window {
  position: absolute;
  left: 80px;
  top: 17px;
  width: 48px;
  height: 96px;
  border-radius: 24px 24px 4px 4px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(255,255,255,.9) 48% 52%, transparent 53%),
    linear-gradient(180deg, transparent 31%, rgba(255,255,255,.9) 32% 35%, transparent 36%),
    radial-gradient(circle at 32% 36%, #6992ac 0 12px, transparent 13px),
    radial-gradient(circle at 68% 36%, #a85e52 0 12px, transparent 13px),
    linear-gradient(180deg, #245e87, #bc9b4e);
  border: 7px solid #e8dcc9;
  box-shadow:
    -46px 11px 0 -8px #e8dcc9,
    46px 11px 0 -8px #e8dcc9,
    0 102px 0 68px rgba(75, 48, 32, .18);
}

.image-chapel .window::before {
  content: "";
  position: absolute;
  left: 15px;
  top: -28px;
  width: 4px;
  height: 34px;
  background: #f0d899;
  box-shadow: -9px 10px 0 -1px #f0d899, 9px 10px 0 -1px #f0d899;
}

.altar {
  position: absolute;
  left: 100px;
  bottom: 0;
  width: 65px;
  height: 24px;
  background: #7b5139;
}

.small-lily,
.book-lily,
.support-lily {
  position: absolute;
  width: 48px;
  height: 42px;
  background:
    radial-gradient(ellipse at 36% 44%, #fff 0 14px, transparent 15px),
    radial-gradient(ellipse at 70% 38%, #fff 0 12px, transparent 13px),
    linear-gradient(70deg, transparent 48%, #77884e 49% 52%, transparent 53%);
  filter: drop-shadow(0 4px 6px rgba(65,46,31,.15));
}

.small-lily {
  left: 18px;
  bottom: 12px;
}

.image-journal {
  background: linear-gradient(130deg, #f7efe5, #d9c9b9);
}

.open-book {
  position: absolute;
  left: 30px;
  top: 19px;
  width: 150px;
  height: 102px;
  border-radius: 6px 6px 16px 16px;
  background:
    linear-gradient(90deg, transparent 48%, #c9b9aa 49% 51%, transparent 52%),
    repeating-linear-gradient(12deg, transparent 0 10px, rgba(102,80,62,.23) 10px 11px),
    linear-gradient(90deg, #fff9ee, #efe1cf);
  box-shadow: 8px 8px 16px rgba(94,72,53,.16);
  transform: rotate(-8deg);
}

.pen {
  position: absolute;
  right: 44px;
  bottom: 25px;
  width: 95px;
  height: 6px;
  border-radius: 999px;
  background: #333039;
  transform: rotate(28deg);
}

.pen::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 16px solid #816d5d;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.book-lily {
  left: 18px;
  top: 8px;
  transform: rotate(-20deg);
}

.image-city {
  background: linear-gradient(180deg, #d9ecf5 0 45%, #f0e8d9 46% 100%);
}

.mountains {
  position: absolute;
  left: 0;
  right: 0;
  top: 37px;
  height: 62px;
  background:
    linear-gradient(140deg, transparent 0 24%, #9eb4c6 25% 42%, transparent 43%),
    linear-gradient(28deg, transparent 0 38%, #b8c9d4 39% 58%, transparent 59%),
    linear-gradient(160deg, transparent 0 55%, #8ba3ba 56% 72%, transparent 73%);
  opacity: .9;
}

.buildings {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 78px;
  background:
    linear-gradient(180deg, #8aa0ae, #667b8d) 3% 29% / 20px 55px no-repeat,
    linear-gradient(180deg, #7e91a0, #587084) 16% 14% / 27px 66px no-repeat,
    linear-gradient(180deg, #a7b3bd, #6d8393) 31% 32% / 24px 52px no-repeat,
    linear-gradient(180deg, #6f889a, #4f6a7f) 49% 7% / 33px 76px no-repeat,
    linear-gradient(180deg, #9aa9b3, #6d7f8c) 70% 24% / 34px 62px no-repeat,
    linear-gradient(180deg, #8699a7, #617587) 90% 36% / 26px 46px no-repeat;
}

.image-support {
  background:
    radial-gradient(circle at 70% 38%, rgba(255,255,255,.75), transparent 72px),
    linear-gradient(130deg, #f7e9df, #ead4c9);
}

.hands {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 17px;
  height: 72px;
  background:
    radial-gradient(ellipse at 25% 50%, #e2bfa8 0 42px, transparent 43px),
    radial-gradient(ellipse at 75% 50%, #e6c8b3 0 42px, transparent 43px);
  border-radius: 60px;
}

.heart {
  position: absolute;
  left: 50%;
  top: 48px;
  width: 56px;
  height: 56px;
  background: #b55f53;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 11px;
  box-shadow: inset 0 0 16px rgba(89,34,30,.16);
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #b55f53;
}

.heart::before { left: -28px; top: 0; }
.heart::after { left: 0; top: -28px; }

.support-lily {
  left: 16px;
  bottom: 10px;
}

.card-body {
  position: relative;
  padding: 17px 55px 18px 17px;
}

.card-body h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.4;
}

.card-body p {
  margin: 0;
  color: #514755;
  font-size: 14px;
  line-height: 1.65;
}

.circle-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #b899cc;
  color: var(--purple);
  font-size: 24px;
  line-height: 1;
  background: #fffdf9;
  transition: background .2s ease, transform .2s ease;
}

.circle-link:hover {
  background: #f1e6f3;
}

.member-cta {
  position: relative;
  max-width: 1088px;
  min-height: 136px;
  margin: 38px auto 45px;
  padding: 28px 62px 28px 245px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(156, 119, 166, .32);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 30%, rgba(255,255,255,.9), transparent 14rem),
    linear-gradient(100deg, #fbf4f2 0%, #f2e3f4 100%);
}

.member-cta h2 {
  color: #3a2e57;
  font-size: 29px;
  line-height: 1.4;
}

.member-cta p {
  margin: 4px 0 0;
  color: #4b4154;
  font-size: 15px;
}

.cta-button {
  min-width: 292px;
}

.cta-lily {
  left: 34px;
  bottom: -45px;
  transform: rotate(-18deg);
}

.about-hero {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 35%, rgba(255,255,255,.74), transparent 17rem),
    linear-gradient(100deg, #ecd7bd 0%, #f8eddf 44%, #e3c7a8 100%);
  border-bottom: 1px solid rgba(132, 96, 68, .12);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.32), rgba(255,255,255,.1) 45%, transparent),
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.42), transparent 18rem);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 4;
  max-width: 1088px;
  min-height: 325px;
  margin: 0 auto;
  padding: 82px 24px 72px;
  display: grid;
  justify-items: start;
  align-content: center;
}

.about-hero h1 {
  margin: 0 0 8px;
  color: #2f2848;
  font-size: clamp(42px, 4.5vw, 58px);
  line-height: 1.35;
  letter-spacing: .05em;
  font-weight: 600;
  text-shadow: 0 2px 0 rgba(255,255,255,.38);
}

.about-hero p {
  margin: 0 0 10px 190px;
  color: #3e3652;
  font-size: 22px;
  letter-spacing: .22em;
  line-height: 1;
}

.ornament-line,
.small-ornament {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 13px;
}

.ornament-line {
  margin-left: 205px;
}

.ornament-line::before,
.small-ornament::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.ornament-line::after,
.small-ornament::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--purple-soft);
  transform: translateX(-50%) rotate(45deg);
  background: rgba(255,255,255,.52);
}

.letter-sheet {
  position: absolute;
  z-index: 1;
  width: 420px;
  height: 230px;
  border: 1px solid rgba(124, 91, 68, .15);
  background:
    repeating-linear-gradient(0deg, transparent 0 25px, rgba(95,66,52,.12) 26px 27px),
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(236,220,199,.52));
  box-shadow: 0 16px 36px rgba(98, 68, 48, .13);
}

.letter-sheet::after {
  content: "";
  position: absolute;
  inset: 38px 42px;
  background:
    repeating-linear-gradient(174deg, rgba(95,63,45,.2) 0 2px, transparent 2px 16px);
  opacity: .42;
  transform: rotate(-4deg);
}

.sheet-left {
  left: -70px;
  top: 34px;
  transform: rotate(-15deg);
}

.sheet-center {
  left: 280px;
  top: 8px;
  width: 520px;
  height: 270px;
  transform: rotate(5deg);
  opacity: .72;
}

.pen-illustration {
  position: absolute;
  z-index: 3;
  left: 642px;
  top: 88px;
  width: 245px;
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #302c33 0 12%, #7f7165 12% 20%, #2e2931 20% 76%, #c6b49d 76% 88%, #2f2b30 88%);
  box-shadow: 0 9px 18px rgba(54,36,24,.24);
  transform: rotate(104deg);
}

.pen-illustration::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -6px;
  width: 0;
  height: 0;
  border-left: 42px solid #4d4542;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.about-hero-lilies {
  position: absolute;
  z-index: 3;
  right: 46px;
  top: 18px;
  width: 360px;
  height: 300px;
  pointer-events: none;
  transform: rotate(14deg);
}

.about-hero-lilies .stem {
  left: 44%;
  height: 250px;
}

.about-hero-lilies .bloom-a {
  left: 96px;
  top: 84px;
  transform: rotate(-20deg) scale(1.35);
}

.about-hero-lilies .bloom-b {
  left: 176px;
  top: 128px;
  transform: rotate(20deg) scale(1.08);
}

.about-hero-lilies .bloom-c {
  left: 40px;
  top: 154px;
  transform: rotate(-52deg) scale(.92);
}

.breadcrumb {
  max-width: 1088px;
  margin: 0 auto;
  padding: 16px 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--purple);
  font-size: 14px;
  font-family: var(--sans);
  font-weight: 700;
}

.breadcrumb span:last-child {
  color: #6d6070;
  font-family: var(--serif);
}

.about-section {
  max-width: 1088px;
  margin: 0 auto;
  padding: 58px 24px 0;
}

.about-heading h2,
.history-copy h2 {
  margin: 0;
  color: #24203a;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: .07em;
  font-weight: 600;
}

.about-heading p {
  margin: 26px 0 34px;
  color: #312c39;
  font-size: 18px;
  line-height: 2.05;
  letter-spacing: .03em;
  font-weight: 600;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.purpose-card {
  min-height: 390px;
  padding: 32px 14px 14px;
  border: 1px solid rgba(151, 118, 92, .24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.95), transparent 13rem),
    rgba(255, 253, 248, .78);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.purpose-card h3 {
  margin: 0;
  color: var(--purple-deep);
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: .04em;
}

.purpose-card p {
  min-height: 98px;
  margin: 17px auto 20px;
  max-width: 235px;
  color: #302b38;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 600;
}

.purpose-photo {
  position: relative;
  height: 170px;
  overflow: hidden;
  border-radius: 5px;
  filter: sepia(.65) saturate(.72) contrast(1.02);
}

.purpose-photo.church-scene {
  background: linear-gradient(180deg, #dfcfb1 0 46%, #71604d 46% 100%);
}

.purpose-photo .church-body {
  left: 50%;
  bottom: 18px;
  width: 70px;
  height: 118px;
  transform: translateX(-50%);
}

.purpose-photo .church-roof {
  left: 50%;
  bottom: 128px;
  width: 100px;
  height: 31px;
  transform: translateX(-50%);
}

.purpose-photo .church-door {
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) scale(.78);
}

.purpose-photo .church-cross {
  left: 50%;
  bottom: 166px;
  transform: translateX(-50%);
}

.purpose-photo .tree {
  bottom: 10px;
  transform: scale(.72);
}

.purpose-photo .tree-left {
  left: 8px;
}

.purpose-photo .tree-right {
  right: 8px;
}

.purpose-photo.group-scene .wall-line {
  top: 24px;
  height: 56px;
}

.purpose-photo.group-scene .group-row {
  left: 18px;
  right: 18px;
}

.meeting-scene {
  background:
    linear-gradient(180deg, #e5d3b5 0 47%, #715843 47% 100%);
}

.meeting-table {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 32px;
  height: 48px;
  border-radius: 50%;
  background: #f0dfc4;
  box-shadow: inset 0 -13px rgba(105, 75, 52, .18);
}

.talker {
  position: absolute;
  width: 42px;
  height: 86px;
  bottom: 54px;
  background:
    radial-gradient(circle at 50% 10px, #25221f 0 10px, transparent 11px),
    linear-gradient(180deg, transparent 22px, #2c2724 23px 86px);
  border-radius: 18px 18px 6px 6px;
}

.t1 { left: 52px; transform: rotate(-8deg); }
.t2 { left: 116px; transform: rotate(5deg); }
.t3 { right: 116px; transform: rotate(-5deg); }
.t4 { right: 52px; transform: rotate(8deg); }

.history-section {
  position: relative;
  min-height: 520px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
}

.timeline {
  position: relative;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 18px;
  bottom: 44px;
  width: 2px;
  background: var(--purple-soft);
}

.timeline li {
  position: relative;
  min-height: 86px;
  padding-left: 62px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 6px rgba(255,253,248,.9);
}

.timeline time {
  color: #3c3349;
  font-size: 23px;
  line-height: 1.4;
  font-weight: 700;
}

.timeline span {
  color: #312c39;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 600;
}

.history-collage {
  position: relative;
  min-height: 350px;
}

.history-photo {
  padding: 10px 10px 22px;
}

.hp-1 {
  width: 290px;
  height: 205px;
  right: 86px;
  top: 18px;
  transform: rotate(6deg);
}

.hp-2 {
  width: 275px;
  height: 185px;
  left: 24px;
  bottom: 12px;
  transform: rotate(-5deg);
}

.hp-3 {
  width: 240px;
  height: 160px;
  right: 0;
  bottom: 48px;
  transform: rotate(8deg);
}

.history-lily {
  position: absolute;
  left: -108px;
  bottom: 0;
  width: 270px;
  height: 220px;
  pointer-events: none;
  transform: rotate(-22deg) scale(.9);
}

.outline-cta {
  position: absolute;
  left: 50%;
  bottom: 28px;
  min-width: 420px;
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid rgba(126, 88, 68, .36);
  border-radius: 5px;
  color: var(--purple);
  background: rgba(255, 253, 248, .72);
  box-shadow: 0 8px 18px rgba(80, 55, 38, .08);
  font-size: 18px;
  font-weight: 700;
  transform: translateX(-50%);
  transition: background .2s ease, transform .2s ease;
}

.outline-cta:hover {
  background: #fffdf8;
  transform: translateX(-50%) translateY(-1px);
}

.subpage-hero {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(255,255,255,.78), transparent 16rem),
    linear-gradient(100deg, #f2e0cc 0%, #fbf0e4 52%, #ead0b6 100%);
  border-bottom: 1px solid rgba(132, 96, 68, .12);
}

.subpage-hero-inner {
  position: relative;
  z-index: 4;
  max-width: 1088px;
  min-height: 330px;
  margin: 0 auto;
  padding: 78px 24px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.subpage-hero h1,
.tokyo-title h1,
.support-title h1 {
  margin: 0;
  color: #2f2848;
  font-size: clamp(42px, 4.7vw, 60px);
  line-height: 1.34;
  letter-spacing: .08em;
  font-weight: 600;
  text-shadow: 0 2px 0 rgba(255,255,255,.35);
}

.subpage-hero p,
.tokyo-title p,
.support-title p {
  margin: 8px 0 10px;
  color: #4f3f62;
  font-size: 22px;
  letter-spacing: .22em;
  line-height: 1;
}

.hero-lily-left,
.hero-lily-right,
.tokyo-lily {
  position: absolute;
  z-index: 3;
  width: 260px;
  height: 220px;
  pointer-events: none;
}

.hero-lily-left {
  left: 18px;
  bottom: 0;
  transform: rotate(-17deg) scale(.9);
}

.hero-lily-right {
  right: 28px;
  top: 22px;
  transform: rotate(14deg);
}

.branch-hero .map-shape {
  position: absolute;
  z-index: 1;
  right: 240px;
  top: 58px;
  width: 275px;
  height: 210px;
  opacity: .45;
  background:
    radial-gradient(ellipse at 62% 8%, #818563 0 28px, transparent 29px),
    radial-gradient(ellipse at 45% 32%, #8d906b 0 70px, transparent 71px),
    radial-gradient(ellipse at 33% 68%, #777b5d 0 50px, transparent 51px),
    radial-gradient(ellipse at 18% 78%, #8c906d 0 34px, transparent 35px);
  filter: blur(.2px);
  transform: rotate(-14deg);
}

.listing-section,
.archive-section,
.branch-detail-section,
.support-section,
.contact-section {
  max-width: 1088px;
  margin: 0 auto;
  padding: 44px 24px 64px;
}

.category-tabs {
  display: grid;
  gap: 20px;
  margin-bottom: 34px;
  padding: 22px 28px;
  border: 1px solid rgba(151, 118, 92, .2);
  border-radius: 8px;
  background: rgba(255,253,249,.72);
  box-shadow: var(--soft-shadow);
}

.branch-tabs {
  grid-template-columns: 1.1fr repeat(6, 1fr);
}

.archive-tabs {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(5, 1fr);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.category-tabs a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(126, 88, 68, .24);
  border-radius: 5px;
  color: #3b3148;
  background: rgba(255,255,255,.6);
  font-weight: 700;
}

.category-tabs .is-current {
  color: #fff;
  background: linear-gradient(180deg, #74568e, #4f346d);
}

.branch-list {
  padding: 26px 24px;
  border: 1px solid rgba(151, 118, 92, .22);
  border-radius: 8px;
  background: rgba(255,253,249,.76);
  box-shadow: var(--soft-shadow);
}

.branch-row,
.mini-news {
  display: grid;
  align-items: center;
  border-bottom: 1px dashed rgba(151,118,92,.35);
}

.branch-row {
  grid-template-columns: 145px 130px 1fr 24px;
  min-height: 72px;
  gap: 22px;
}

.branch-row:last-child,
.mini-news:last-of-type {
  border-bottom: 0;
}

.branch-name-pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(180deg, #74568e, #4f346d);
  font-weight: 700;
}

.branch-row time,
.mini-news time {
  color: #8a5b37;
  font-size: 16px;
  font-weight: 700;
}

.branch-row strong,
.mini-news strong {
  font-size: 18px;
  font-weight: 600;
}

.branch-row > span:last-child,
.mini-news i {
  color: var(--purple);
  font-size: 32px;
  font-style: normal;
}

.static-cta {
  position: static;
  transform: none;
  margin: 30px auto 0;
  max-width: 380px;
}

.static-cta:hover {
  transform: translateY(-1px);
}

.tokyo-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(180deg, #dff0fa 0%, #f7fbff 56%, #daeaf5 100%);
}

.branch-breadcrumb,
.support-breadcrumb {
  position: relative;
  z-index: 5;
  padding-top: 26px;
}

.skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background:
    linear-gradient(180deg, transparent 0 28%, rgba(255,255,255,.55) 29% 100%),
    linear-gradient(180deg, #b3c9d9, #7898ad) 6% 44% / 55px 130px no-repeat,
    linear-gradient(180deg, #7fa3bc, #52758d) 16% 18% / 42px 190px no-repeat,
    linear-gradient(180deg, #a7bac7, #7891a1) 31% 40% / 74px 145px no-repeat,
    linear-gradient(180deg, #8ca9bb, #5d7d91) 52% 28% / 52px 165px no-repeat,
    linear-gradient(180deg, #c0ccd3, #8699a6) 74% 42% / 80px 130px no-repeat,
    linear-gradient(180deg, #a4b8c4, #708899) 91% 32% / 58px 158px no-repeat;
}

.skyline::before {
  content: "";
  position: absolute;
  left: 210px;
  bottom: 55px;
  width: 16px;
  height: 210px;
  background: #527996;
  box-shadow: 0 -48px 0 -5px #527996;
}

.skyline::after {
  content: "";
  position: absolute;
  left: 186px;
  bottom: 240px;
  width: 64px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.65);
  box-shadow: -110px 34px 0 30px rgba(185,207,221,.5);
}

.tokyo-title,
.support-title {
  position: relative;
  z-index: 4;
  text-align: center;
  padding-top: 82px;
}

.tokyo-lily {
  right: 24px;
  bottom: 12px;
  transform: rotate(15deg) scale(1.1);
}

.lead-center {
  margin: 0 auto 34px;
  max-width: 760px;
  text-align: center;
  color: #2c2737;
  font-size: 21px;
  line-height: 2;
  font-weight: 700;
}

.center-ornament {
  display: block;
  margin: 0 auto 34px;
  color: var(--purple);
  text-align: center;
  font-size: 28px;
}

.branch-detail-card,
.branch-contact-card {
  position: relative;
  overflow: hidden;
  padding: 36px 42px;
  border: 1px solid rgba(151, 118, 92, .22);
  border-radius: 8px;
  background: rgba(255,253,249,.78);
  box-shadow: var(--soft-shadow);
}

.branch-detail-card {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 34px;
}

.branch-news h2,
.branch-contact-card h2,
.support-section h2 {
  margin: 0 0 22px;
  color: #2f2848;
  font-size: 28px;
  letter-spacing: .05em;
}

.mini-news {
  grid-template-columns: 110px 78px 1fr 26px;
  gap: 18px;
  min-height: 66px;
}

.mini-news .tag {
  min-width: 72px;
}

.mini-cta {
  position: static;
  transform: none;
  min-width: 0;
  width: 320px;
  margin-top: 28px;
}

.mini-cta:hover {
  transform: translateY(-1px);
}

.branch-collage {
  position: relative;
  min-height: 280px;
}

.branch-collage .polaroid {
  padding: 8px 8px 18px;
}

.bc-1 { width: 190px; height: 150px; right: 38px; top: 2px; transform: rotate(8deg); }
.bc-2 { width: 185px; height: 138px; left: 8px; bottom: 38px; transform: rotate(-7deg); }
.bc-3 { width: 172px; height: 126px; right: 0; bottom: 0; transform: rotate(9deg); }

.branch-contact-card {
  margin-top: 42px;
  text-align: center;
}

.branch-contact-card p {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--purple);
  font-size: 18px;
}

.archive-section {
  padding-top: 58px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.archive-card {
  overflow: hidden;
  border: 1px solid rgba(151, 118, 92, .22);
  border-radius: 8px;
  background: rgba(255,253,249,.8);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.journal-art {
  position: relative;
  height: 270px;
  background:
    radial-gradient(circle at 8% 70%, rgba(255,255,255,.9), transparent 48px),
    linear-gradient(135deg, #f5e8d9, #e1c9b3);
}

.journal-art::before {
  content: "しらゆり";
  position: absolute;
  left: 82px;
  top: 44px;
  z-index: 3;
  font-weight: 700;
  transform: rotate(-8deg);
}

.journal-art span {
  position: absolute;
  left: 55px;
  top: 40px;
  width: 210px;
  height: 180px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, transparent 52%, rgba(0,0,0,.08) 53% 55%, transparent 56%),
    repeating-linear-gradient(0deg, transparent 0 11px, rgba(70,58,48,.2) 12px 13px),
    linear-gradient(90deg, #fff8ee, #efe0ce);
  box-shadow: 12px 12px 18px rgba(92,68,48,.16);
  transform: rotate(-8deg);
}

.journal-art span::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 48px;
  width: 86px;
  height: 78px;
  background: linear-gradient(180deg, #a4b9bc, #6d8d95);
  filter: sepia(.55);
}

.journal-art.mono span::after {
  background: radial-gradient(circle at 30% 24%, #3b352e 0 9px, transparent 10px), radial-gradient(circle at 58% 24%, #3b352e 0 9px, transparent 10px), linear-gradient(180deg, #ddd2c2, #7b6a5a);
}

.journal-art.sepia span::after {
  background: linear-gradient(180deg, #d1b68e, #7d674d);
}

.archive-card h2 {
  margin: 18px 0 2px;
  color: #272239;
  font-size: 30px;
  font-weight: 500;
}

.archive-card p {
  margin: 0 0 16px;
  font-size: 16px;
}

.archive-card a {
  min-width: 210px;
  min-height: 44px;
  margin: 0 auto 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid #b899cc;
  border-radius: 6px;
  color: var(--purple);
  font-size: 18px;
  font-weight: 700;
}

.support-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #fff9f6;
  border-bottom: 1px solid rgba(177, 200, 224, .28);
}

.support-hero-image,
.support-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.support-hero-image {
  object-fit: cover;
  object-position: center;
}

.support-hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.84) 34%, rgba(255,255,255,.34) 64%, rgba(255,255,255,.08) 100%);
}

.support-hero .support-title {
  max-width: 1088px;
  margin: 0 auto;
  padding: 96px 24px 0;
  text-align: left;
}

.support-section h2 {
  margin-top: 24px;
  text-align: center;
}

.support-purpose {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #51465b;
  font-size: 17px;
  line-height: 1.9;
  text-align: center;
}

.support-use-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.support-use-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 142px;
  padding: 24px;
  border: 1px solid rgba(151, 118, 92, .22);
  border-radius: 8px;
  background: rgba(255,253,249,.86);
  box-shadow: var(--soft-shadow);
}

.support-use-item:last-child {
  grid-column: 1 / -1;
}

.support-use-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(143, 106, 163, .26);
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  color: var(--purple);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.support-use-item h3 {
  margin: 0 0 10px;
  color: #312747;
  font-size: 21px;
  line-height: 1.45;
}

.support-use-item p {
  margin: 0;
  color: #51465b;
  font-size: 15px;
  line-height: 1.85;
}

.support-buttons {
  width: min(720px, 100%);
  margin: 44px auto 0;
  display: grid;
  gap: 22px;
}

.support-buttons .primary-button {
  width: 100%;
}

.contact-hero {
  background:
    radial-gradient(circle at 80% 44%, rgba(255,255,255,.8), transparent 17rem),
    linear-gradient(100deg, #eadbdc 0%, #f7eeee 52%, #e6d2d2 100%);
}

.envelope-art {
  position: absolute;
  right: 190px;
  top: 72px;
  width: 230px;
  height: 145px;
  background: #fff9f5;
  box-shadow: 0 22px 40px rgba(92,68,48,.12);
  transform: rotate(-12deg);
}

.envelope-art::before,
.envelope-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 49%, #ded0ca 50% 51%, transparent 52%);
}

.envelope-art::after {
  background: linear-gradient(35deg, transparent 49%, #ded0ca 50% 51%, transparent 52%);
}

.contact-section {
  padding-top: 58px;
}

.contact-form {
  max-width: 960px;
  margin: 0 auto;
  padding: 44px 58px 52px;
  border: 1px solid rgba(151, 118, 92, .22);
  border-radius: 8px;
  background: rgba(255,253,249,.78);
  box-shadow: var(--soft-shadow);
}

.contact-form label {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  color: #2c2737;
  font-size: 17px;
  font-weight: 700;
}

.contact-form .field-label {
  color: #2c2737;
}

.contact-form .field-label em {
  color: #b04b44;
  font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 62px;
  padding: 0 20px;
  border: 1px solid rgba(151, 118, 92, .35);
  border-radius: 4px;
  background: rgba(255,255,255,.58);
  color: var(--ink);
  font: 16px var(--serif);
}

.contact-form textarea {
  min-height: 165px;
  padding-top: 18px;
  resize: vertical;
}

.contact-form button {
  width: min(420px, 100%);
  min-height: 68px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, #74568e, #4f346d);
  box-shadow: 0 13px 25px rgba(66,42,91,.22);
  font: 20px var(--serif);
  cursor: pointer;
}

.site-footer {
  position: relative;
  color: rgba(255,255,255,.88);
  background:
    radial-gradient(circle at 92% 20%, rgba(255,255,255,.12), transparent 14rem),
    linear-gradient(105deg, #4b3568 0%, #342344 100%);
  overflow: hidden;
}

.footer-inner {
  position: relative;
  max-width: 1180px;
  min-height: 258px;
  margin: 0 auto;
  padding: 52px 24px 34px;
  display: grid;
  grid-template-columns: 1.55fr .7fr .85fr 1.18fr;
  gap: 52px;
}

.brand-footer {
  min-width: 0;
  color: #fff;
}

.brand-footer .brand-mark {
  color: #fff;
}

.brand-footer .brand-name {
  font-size: 24px;
}

.brand-footer .brand-en {
  color: rgba(255,255,255,.78);
}

.footer-brand p {
  margin: 24px 0 20px;
  font-size: 15px;
  line-height: 1.9;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 160px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 3px;
  transition: background .2s ease;
}

.footer-button:hover {
  background: rgba(255,255,255,.08);
}

.footer-column,
.footer-social {
  padding-top: 6px;
}

.footer-column h2,
.footer-social h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
}

.footer-column a {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
}

.footer-column a::before {
  content: "›";
  margin-right: 10px;
  color: rgba(255,255,255,.74);
}

.sns-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 19px;
}

.sns-row a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--purple-deep);
  background: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
}

.sns-row a:last-child {
  width: 42px;
  font-size: 9px;
}

.mail-card {
  position: relative;
  width: 210px;
  min-height: 74px;
  padding: 14px 38px 14px 18px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
  color: #fff;
}

.mail-card strong {
  font-size: 15px;
}

.mail-card span {
  color: rgba(255,255,255,.73);
  font-size: 12px;
  font-family: var(--sans);
}

.mail-card i {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font-style: normal;
  transform: translateY(-50%);
}

.footer-lily {
  right: -20px;
  bottom: 58px;
  z-index: 0;
  transform: rotate(13deg) scale(.9);
}

.footer-lily .stem {
  background: linear-gradient(#c5d29b, #81915d);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
  padding: 21px 80px;
}

.footer-bottom small {
  color: rgba(255,255,255,.74);
  font-size: 13px;
}

.top-button {
  position: absolute;
  right: 34px;
  bottom: 20px;
  width: 72px;
  height: 72px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 50%;
  color: var(--purple-deep);
  background: #fff;
  box-shadow: 0 10px 22px rgba(32, 21, 41, .22);
  font-size: 24px;
  line-height: 1;
}

.top-button span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .header-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .global-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    padding-bottom: 14px;
    gap: 18px;
  }

  .global-nav a {
    padding: 0 0 10px;
  }

  .global-nav a::after {
    bottom: 4px;
  }

  .hero-inner {
    grid-template-columns: .85fr 1.15fr;
  }

  .hero-copy {
    padding-left: 12px;
  }

  .photo-large {
    left: 24px;
  }

  .photo-small {
    right: -8px;
  }

  .photo-wide {
    right: 98px;
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    grid-template-columns: 1fr auto;
  }

  .brand-name {
    font-size: 21px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(93, 66, 120, .36);
    border-radius: 50%;
    background: rgba(255,255,255,.72);
    box-shadow: 0 7px 16px rgba(82, 52, 110, .1);
    cursor: pointer;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--purple);
    transition: transform .22s ease, opacity .22s ease;
  }

  .global-nav {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    padding: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 253, 249, .96);
    box-shadow: none;
    transition: max-height .28s ease, padding .28s ease, border-color .28s ease, box-shadow .28s ease;
  }

  .global-nav a {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(114, 88, 70, .12);
    font-size: 15px;
  }

  .global-nav .mobile-only-nav {
    display: block;
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .global-nav a::after {
    display: none;
  }

  .nav-toggle:checked ~ .global-nav {
    max-height: 430px;
    padding: 8px;
    border: 1px solid rgba(133, 104, 83, .18);
    box-shadow: 0 14px 28px rgba(78, 57, 43, .12);
  }

  .nav-toggle:checked + .menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 62px;
    padding-bottom: 82px;
  }

  .hero-copy {
    padding-left: 0;
    text-align: left;
  }

  .hero-art {
    min-height: 430px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-item:nth-child(3) {
    border-right: 0;
  }

  .quick-item:nth-child(n + 4) {
    border-top: 1px solid rgba(114, 88, 70, .16);
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .member-cta {
    grid-template-columns: 1fr;
    padding: 130px 28px 28px;
    text-align: center;
  }

  .cta-lily {
    left: 50%;
    top: -42px;
    bottom: auto;
    transform: translateX(-50%) rotate(-15deg) scale(.78);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px 42px;
  }

  .about-hero-inner {
    min-height: 285px;
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .about-hero-lilies {
    right: -54px;
    transform: rotate(14deg) scale(.82);
  }

  .sheet-center {
    left: 180px;
  }

  .pen-illustration {
    left: 560px;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .purpose-card {
    min-height: 0;
  }

  .history-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 96px;
  }

  .history-collage {
    min-height: 360px;
  }

  .history-lily {
    left: -120px;
    transform: rotate(-22deg) scale(.78);
  }

  .branch-tabs,
  .archive-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .branch-row {
    grid-template-columns: 130px 110px 1fr 22px;
    gap: 14px;
  }

  .branch-detail-card {
    grid-template-columns: 1fr;
  }

  .branch-collage {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
  }

  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form {
    padding: 36px 34px 44px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-en {
    font-size: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 48px 20px 72px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .primary-button {
    width: 100%;
    min-width: 0;
  }

  .hero-art {
    min-height: 355px;
  }

  .photo-large {
    width: 206px;
    height: 250px;
    left: 10px;
  }

  .photo-small {
    width: 196px;
    height: 178px;
    right: 0;
    top: 32px;
  }

  .photo-wide {
    width: 230px;
    height: 158px;
    right: 46px;
    bottom: 14px;
  }

  .lily-main {
    transform: rotate(-8deg) scale(.72);
    left: -54px;
    bottom: -46px;
  }

  .lily-side {
    display: none;
  }

  .quick-links {
    margin-top: -24px;
    padding: 0 16px;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-item {
    min-height: 124px;
  }

  .quick-item:nth-child(3) {
    border-right: 1px solid rgba(114, 88, 70, .16);
  }

  .quick-item:nth-child(2n) {
    border-right: 0;
  }

  .quick-item:nth-child(n + 3) {
    border-top: 1px solid rgba(114, 88, 70, .16);
  }

  .section {
    padding: 34px 18px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .news-row {
    grid-template-columns: 90px 68px 1fr 16px;
    gap: 8px;
    padding: 12px 0;
  }

  .news-row time,
  .news-text {
    font-size: 13px;
  }

  .tag {
    min-width: 58px;
    font-size: 11px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .member-cta {
    margin: 34px 18px 38px;
  }

  .member-cta h2 {
    font-size: 25px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 42px 24px 92px;
  }

  .footer-lily {
    right: -83px;
    bottom: 72px;
    transform: rotate(13deg) scale(.68);
  }

  .footer-bottom {
    padding: 18px 86px 18px 24px;
    text-align: left;
  }

  .top-button {
    right: 20px;
    bottom: 16px;
    width: 62px;
    height: 62px;
  }

  .about-hero {
    min-height: 265px;
  }

  .about-hero-inner {
    min-height: 265px;
    padding: 56px 20px 48px;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-hero p {
    margin-left: 92px;
    font-size: 17px;
  }

  .ornament-line {
    margin-left: 108px;
  }

  .letter-sheet {
    width: 310px;
    height: 178px;
  }

  .sheet-left {
    left: -132px;
    top: 48px;
  }

  .sheet-center {
    left: 84px;
    top: 18px;
    width: 360px;
    height: 210px;
  }

  .pen-illustration {
    left: 290px;
    top: 86px;
    width: 190px;
    transform: rotate(103deg) scale(.78);
  }

  .about-hero-lilies {
    right: -140px;
    top: 40px;
    transform: rotate(14deg) scale(.58);
  }

  .breadcrumb,
  .about-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-section {
    padding-top: 42px;
  }

  .about-heading h2,
  .history-copy h2 {
    font-size: 32px;
  }

  .about-heading p {
    margin-top: 18px;
    font-size: 16px;
  }

  .purpose-grid {
    gap: 22px;
  }

  .purpose-card {
    padding-top: 26px;
  }

  .timeline {
    margin-top: 28px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 110px;
    padding-left: 50px;
  }

  .timeline time {
    font-size: 21px;
  }

  .timeline span {
    font-size: 16px;
  }

  .history-collage {
    min-height: 290px;
  }

  .history-photo {
    padding: 8px 8px 18px;
  }

  .hp-1 {
    width: 230px;
    height: 165px;
    right: 12px;
    top: 0;
  }

  .hp-2 {
    width: 220px;
    height: 150px;
    left: 0;
    bottom: 12px;
  }

  .hp-3 {
    width: 190px;
    height: 135px;
    right: 0;
    bottom: 48px;
  }

  .history-lily {
    left: -128px;
    bottom: 12px;
    transform: rotate(-22deg) scale(.58);
  }

  .outline-cta {
    min-width: 0;
    width: calc(100% - 40px);
    font-size: 16px;
  }

  .subpage-hero {
    min-height: 250px;
  }

  .subpage-hero-inner {
    min-height: 250px;
    padding: 52px 20px 44px;
  }

  .subpage-hero h1,
  .tokyo-title h1,
  .support-title h1 {
    font-size: 36px;
  }

  .subpage-hero p,
  .tokyo-title p,
  .support-title p {
    font-size: 16px;
  }

  .hero-lily-left {
    left: -92px;
    transform: rotate(-17deg) scale(.55);
  }

  .hero-lily-right {
    right: -104px;
    transform: rotate(14deg) scale(.58);
  }

  .branch-hero .map-shape {
    right: 36px;
    top: 76px;
    width: 190px;
    height: 145px;
  }

  .listing-section,
  .archive-section,
  .branch-detail-section,
  .support-section,
  .contact-section {
    padding: 34px 20px 46px;
  }

  .category-tabs,
  .branch-tabs,
  .archive-tabs {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .branch-list {
    padding: 8px 16px;
  }

  .branch-row {
    grid-template-columns: 1fr 22px;
    gap: 4px 12px;
    padding: 16px 0;
  }

  .branch-row .branch-name-pill,
  .branch-row time,
  .branch-row strong {
    grid-column: 1;
  }

  .branch-row > span:last-child {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
  }

  .branch-name-pill {
    width: 116px;
    min-height: 34px;
    font-size: 13px;
  }

  .branch-row strong,
  .mini-news strong {
    font-size: 16px;
  }

  .tokyo-hero,
  .support-hero {
    min-height: 320px;
  }

  .tokyo-title {
    padding-top: 54px;
  }

  .support-hero-image {
    object-position: 64% center;
  }

  .support-hero-shade {
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.76) 46%, rgba(255,255,255,.26) 100%);
  }

  .support-hero .support-title {
    padding: 58px 20px 0;
  }

  .tokyo-lily {
    right: -86px;
    bottom: 0;
    transform: rotate(15deg) scale(.62);
  }

  .lead-center {
    font-size: 17px;
    line-height: 1.85;
  }

  .branch-detail-card,
  .branch-contact-card {
    padding: 26px 18px;
  }

  .mini-news {
    grid-template-columns: 1fr 20px;
    gap: 4px 10px;
    padding: 14px 0;
  }

  .mini-news time,
  .mini-news .tag,
  .mini-news strong {
    grid-column: 1;
  }

  .mini-news i {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
  }

  .mini-cta {
    width: 100%;
  }

  .branch-collage {
    min-height: 240px;
  }

  .bc-1 { right: 18px; }
  .bc-2 { left: 0; }
  .bc-3 { right: 0; }

  .branch-contact-card p {
    display: grid;
    gap: 8px;
    font-size: 15px;
  }

  .archive-grid,
  .support-use-list {
    grid-template-columns: 1fr;
  }

  .journal-art {
    height: 235px;
  }

  .journal-art span {
    left: 50px;
    width: 190px;
    height: 162px;
  }

  .support-section h2 {
    font-size: 27px;
  }

  .support-use-item {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 20px 18px;
  }

  .support-use-number {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }

  .support-use-item h3 {
    font-size: 19px;
  }

  .support-buttons {
    margin-top: 32px;
  }

  .envelope-art {
    right: -20px;
    top: 58px;
    transform: rotate(-12deg) scale(.72);
  }

  .contact-form {
    padding: 28px 18px 34px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 56px;
  }
}

/* --- Bright home redesign overrides --- */
:root {
  --ink: #21182d;
  --muted: #6f6676;
  --purple: #8f6aa3;
  --purple-deep: #68427f;
  --purple-soft: #b79ac8;
  --cream: #fffafc;
  --paper: #f7f0fb;
  --line: #eadff0;
  --white: #ffffff;
  --gold: #97735b;
  --shadow: 0 26px 64px rgba(96, 72, 113, .16);
  --soft-shadow: 0 16px 40px rgba(93, 72, 105, .12);
}

body {
  background:
    radial-gradient(circle at 12% 9%, rgba(242, 230, 248, .66), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fffaff 48%, #ffffff 100%);
}

.home-page {
  background: #fff;
}

.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: .18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(111, 84, 134, .18) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(130, 110, 150, .12) 0 1px, transparent 1px);
  background-size: 34px 34px, 48px 48px;
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  color: #fff;
  background: linear-gradient(180deg, rgba(47, 73, 116, .34), rgba(47, 73, 116, 0));
  border-bottom: 0;
  backdrop-filter: none;
}

.home-page .header-inner {
  max-width: 1410px;
  min-height: 90px;
  padding: 0 28px;
  gap: 34px;
}

.home-page .brand,
.home-page .brand-en,
.home-page .global-nav a {
  color: #fff;
}

.home-page .brand-mark {
  opacity: 0.9;
  filter: invert(1) brightness(1.08) drop-shadow(0 8px 18px rgba(49, 61, 93, .2));
}

.home-page .brand-name {
  font-size: clamp(20px, 1.95vw, 28px);
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(45, 54, 84, .28);
}

.home-page .brand-en {
  opacity: .9;
  text-shadow: 0 2px 12px rgba(45, 54, 84, .25);
}

.home-page .global-nav {
  gap: clamp(14px, 2vw, 30px);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.home-page .global-nav a {
  padding: 30px 0;
  text-shadow: 0 2px 12px rgba(42, 52, 82, .34);
}

.home-page .global-nav a::after {
  bottom: 24px;
  background: rgba(255, 255, 255, .82);
}

.home-page .global-nav .nav-contact {
  min-height: 40px;
  margin-left: 4px;
  padding: 11px 19px;
  border-radius: 9px;
  background: rgba(129, 80, 148, .86);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 12px 26px rgba(73, 47, 92, .24);
  backdrop-filter: blur(10px);
}

.home-page .global-nav .nav-contact::after {
  display: none;
}

@media (min-width: 921px) {
  .home-page .menu-button {
    display: none;
  }
}

.home-page .hero {
  min-height: 760px;
  overflow: hidden;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(250, 246, 255, .92) 0%, rgba(248, 244, 254, .66) 33%, rgba(255,255,255,.08) 63%),
    radial-gradient(circle at 18% 50%, rgba(250, 241, 255, .88), transparent 28rem),
    linear-gradient(180deg, #76a6d8 0%, #b8d8f0 48%, #eef3e9 86%, #f8faf5 100%);
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 87% 19%, rgba(255,255,255,.72) 0 3rem, transparent 9rem),
    radial-gradient(circle at 45% 13%, rgba(255,255,255,.42), transparent 15rem),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.66) 89%);
}

.home-page .hero::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -16px;
  height: 220px;
  z-index: 1;
  background:
    radial-gradient(ellipse at 10% 62%, #7c9548 0 11rem, transparent 11.2rem),
    radial-gradient(ellipse at 28% 52%, #5f7f3d 0 10rem, transparent 10.3rem),
    radial-gradient(ellipse at 61% 48%, #536f38 0 13rem, transparent 13.2rem),
    radial-gradient(ellipse at 82% 56%, #718b46 0 11rem, transparent 11.2rem),
    linear-gradient(180deg, transparent 0, rgba(81, 118, 54, .88) 42%, #6c833b 100%);
  filter: saturate(.92) brightness(1.03);
}

.home-page .paper-grain {
  z-index: 2;
  opacity: .28;
  mix-blend-mode: screen;
}

.home-page .hero-inner {
  position: relative;
  z-index: 4;
  max-width: 1410px;
  min-height: 760px;
  padding: 154px 28px 126px;
  grid-template-columns: minmax(430px, .88fr) minmax(560px, 1.12fr);
  gap: 28px;
}

.home-page .hero-copy {
  max-width: 660px;
  padding: 74px 0 0 34px;
}

.home-page .eyebrow {
  margin-bottom: 20px;
  color: #706079;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: none;
}

.home-page .hero h1 {
  color: #1e1a28;
  font-size: clamp(46px, 4.8vw, 62px);
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: .02em;
  text-wrap: balance;
}

.home-page .hero-lead {
  max-width: 640px;
  margin: 30px 0 33px;
  color: #342f3c;
  font-size: 16px;
  line-height: 2.15;
  letter-spacing: .04em;
}

.home-page .hero .primary-button {
  min-width: 232px;
  min-height: 50px;
  gap: 24px;
  color: #6d4a7c;
  border: 1px solid rgba(109, 74, 124, .32);
  background: rgba(255, 255, 255, .38);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.home-page .hero .primary-button:hover {
  color: #fff;
  background: rgba(126, 86, 147, .84);
  box-shadow: 0 14px 34px rgba(85, 62, 99, .22);
}

.home-page .hero-art {
  position: relative;
  min-height: 560px;
  align-self: end;
}

.home-page .hero-art::before {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -56px;
  z-index: 0;
  width: min(64vw, 880px);
  height: 430px;
  background:
    radial-gradient(ellipse at 14% 63%, rgba(66, 98, 48, .98) 0 80px, transparent 82px),
    radial-gradient(ellipse at 32% 48%, rgba(47, 82, 44, .92) 0 112px, transparent 114px),
    radial-gradient(ellipse at 61% 52%, rgba(70, 104, 54, .96) 0 120px, transparent 122px),
    radial-gradient(ellipse at 86% 57%, rgba(95, 128, 64, .92) 0 116px, transparent 118px),
    linear-gradient(180deg, rgba(255,255,255,0) 0 26%, rgba(89, 126, 56, .86) 74%, #6f8b3c 100%);
  filter: blur(.1px) saturate(.96);
}

.home-page .hero-art .photo-scene {
  display: none;
}

.home-page .polaroid {
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
}

.home-page .photo-wide {
  right: -98px;
  bottom: -12px;
  left: auto;
  z-index: 2;
  width: 790px;
  height: 240px;
  transform: none;
  background:
    radial-gradient(circle at 5% 74%, #ffffff 0 11px, transparent 12px),
    radial-gradient(circle at 14% 71%, #ffffff 0 8px, transparent 9px),
    radial-gradient(circle at 25% 75%, #ffffff 0 10px, transparent 11px),
    radial-gradient(ellipse at 22% 64%, rgba(78, 111, 53, .98) 0 92px, transparent 94px),
    radial-gradient(ellipse at 50% 57%, rgba(58, 90, 45, .95) 0 110px, transparent 112px),
    radial-gradient(ellipse at 79% 62%, rgba(78, 112, 48, .96) 0 120px, transparent 122px),
    linear-gradient(180deg, transparent 0 50%, #6b8841 51% 100%);
}

.home-page .photo-large {
  right: 162px;
  bottom: 115px;
  left: auto;
  z-index: 4;
  width: 430px;
  height: 238px;
  transform: none;
  border: 1px solid rgba(140, 133, 118, .42);
  background:
    linear-gradient(90deg, rgba(255,255,255,.74), rgba(235, 233, 221, .86)),
    linear-gradient(180deg, #ffffff, #ddd8ca);
  box-shadow: 0 34px 65px rgba(55, 70, 45, .26);
}

.home-page .photo-large::before {
  content: "";
  position: absolute;
  left: -22px;
  right: -18px;
  top: -42px;
  height: 70px;
  background: linear-gradient(180deg, #596b70, #31464c);
  clip-path: polygon(10% 58%, 55% 0, 94% 58%, 100% 100%, 0 100%);
  box-shadow: inset 0 -7px rgba(255,255,255,.12);
}

.home-page .photo-large::after {
  content: "";
  position: absolute;
  left: 56px;
  top: 64px;
  width: 31px;
  height: 58px;
  border-radius: 14px 14px 2px 2px;
  background: linear-gradient(180deg, #20262b, #12161b);
  box-shadow:
    78px 0 0 #20262b,
    156px 0 0 #20262b,
    234px 0 0 #20262b,
    312px 0 0 #20262b,
    39px 91px 0 -5px #262d30,
    117px 91px 0 -5px #262d30,
    195px 91px 0 -5px #262d30,
    273px 91px 0 -5px #262d30;
  opacity: .88;
}

.home-page .photo-small {
  right: 292px;
  bottom: 316px;
  left: auto;
  z-index: 5;
  width: 132px;
  height: 314px;
  transform: none;
  border: 1px solid rgba(140, 133, 118, .42);
  background: linear-gradient(90deg, #fffef8, #ddd8c9);
  box-shadow: 0 28px 58px rgba(52, 67, 43, .24);
}

.home-page .photo-small::before {
  content: "";
  position: absolute;
  left: -15px;
  right: -15px;
  top: -39px;
  height: 50px;
  background: linear-gradient(180deg, #5c6e73, #334a50);
  clip-path: polygon(50% 0, 100% 82%, 100% 100%, 0 100%, 0 82%);
}

.home-page .photo-small::after {
  content: "";
  position: absolute;
  left: 48px;
  top: 55px;
  width: 34px;
  height: 62px;
  border-radius: 17px 17px 2px 2px;
  background: linear-gradient(180deg, #252d31, #151b1f);
  box-shadow: 0 112px 0 -2px #252d31;
}

.home-page .photo-small .photo-scene::before,
.home-page .photo-small .photo-scene::after {
  display: none;
}

.home-page .lily-main {
  right: -10px;
  left: auto;
  bottom: -38px;
  z-index: 9;
  width: 328px;
  height: 290px;
  transform: rotate(10deg) scale(1.28);
  filter: blur(.1px);
}

.home-page .lily-side {
  display: none;
}

.home-page .petal {
  z-index: 7;
  opacity: .82;
  background: linear-gradient(100deg, rgba(255,255,255,.96), rgba(246, 239, 249, .86));
  animation: petal-drift 9s cubic-bezier(.32, 0, .28, 1) infinite alternate;
}

.home-page .petal-1 { left: 18%; top: 23%; }
.home-page .petal-2 { left: 30%; bottom: 20%; animation-delay: -3s; }
.home-page .petal-3 { right: 14%; top: 22%; animation-delay: -5s; }
.home-page .petal-4 { right: 34%; bottom: 24%; animation-delay: -1.5s; }

@keyframes petal-drift {
  from { transform: translate3d(0, 0, 0) rotate(-18deg); }
  to { transform: translate3d(22px, 34px, 0) rotate(28deg); }
}

.home-page .scroll-cue {
  position: absolute;
  left: 25px;
  bottom: 210px;
  z-index: 9;
  color: rgba(64, 54, 73, .7);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  writing-mode: vertical-rl;
}

.home-page .scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 70px;
  margin: 12px auto 0;
  background: rgba(100, 80, 112, .44);
}

.home-page .quick-links {
  max-width: 1340px;
  margin: -72px auto 0;
  padding: 0 42px;
}

.home-page .quick-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(149, 121, 163, .18);
  border-radius: 10px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 64px rgba(80, 64, 91, .16);
  backdrop-filter: blur(18px);
}

.home-page .quick-item {
  min-height: 138px;
  border-right-color: rgba(142, 113, 157, .18);
  color: #2d2337;
  background: transparent;
}

.home-page .quick-item svg {
  color: var(--purple);
}

.home-page .quick-item span {
  color: #9b8ca4;
  font-style: italic;
}

.home-page .quick-item:hover {
  background: #fbf7fd;
  transform: translateY(-2px);
}

.home-page .anchor-point {
  display: block;
  height: 1px;
  scroll-margin-top: 90px;
}

.home-page .home-board {
  max-width: 1340px;
  padding: 64px 42px 0;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(650px, 1.55fr);
  align-items: stretch;
  gap: 34px;
}

.home-page .news-panel {
  min-width: 0;
}

.home-page .section-heading {
  padding-bottom: 18px;
}

.home-page .section-heading h2 {
  color: #241e2d;
  font-size: 28px;
  letter-spacing: .08em;
}

.home-page .section-heading a {
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(144, 105, 165, .18);
  border-radius: 999px;
  color: #79508b;
  background: #fff;
}

.home-page .news-list {
  border-top-color: #eee6f2;
}

.home-page .news-row {
  min-height: 58px;
  grid-template-columns: 104px 72px 1fr 18px;
  gap: 14px;
  border-bottom-color: #eee6f2;
}

.home-page .news-row:hover {
  background: #fcf8ff;
}

.home-page .news-row time {
  color: #5d5065;
  font-size: 14px;
}

.home-page .tag {
  min-height: 25px;
  border-radius: 4px;
  background: #b4a0c5;
  font-size: 12px;
}

.home-page .news-text {
  color: #2d2833;
  font-size: 14px;
  line-height: 1.65;
}

.home-page .row-arrow {
  color: #a58ab8;
}

.home-page .feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-page .feature-cards .content-card {
  position: relative;
  min-height: 342px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #9f88af;
  box-shadow: 0 18px 42px rgba(91, 72, 100, .18);
}

.home-page .feature-cards .content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(91, 72, 100, .24);
}

.home-page .feature-cards .card-image {
  position: absolute;
  inset: 0;
  height: auto;
  border: 0;
  filter: none;
}

.home-page .feature-cards .card-image > * {
  display: none;
}

.home-page .feature-cards .card-image::after {
  background:
    linear-gradient(180deg, rgba(38, 28, 45, .02) 0%, rgba(71, 45, 85, .72) 100%),
    linear-gradient(110deg, rgba(255,255,255,.12), transparent 42%);
}

.home-page .feature-learn .image-chapel {
  background: url("assets/home/feature-school.jpeg") center / cover no-repeat;
}

.home-page .feature-connect .image-city {
  background: url("assets/home/feature-connect.jpeg") center 42% / cover no-repeat;
}

.home-page .feature-support .image-support {
  background: url("assets/home/feature-support-donation.png") 64% center / cover no-repeat;
}

.home-page .feature-cards .card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 0 58px 26px 26px;
}

.home-page .feature-cards .card-body h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(41, 31, 47, .24);
}

.home-page .feature-cards .card-body p {
  color: rgba(255,255,255,.93);
  font-size: 14px;
}

.home-page .feature-cards .circle-link {
  right: 24px;
  bottom: 27px;
  border: 0;
  color: #7c568f;
  background: #fff;
  box-shadow: 0 10px 22px rgba(51, 38, 57, .2);
}

.home-page .spirit-band {
  max-width: 1340px;
  min-height: 284px;
  margin: 64px auto 38px;
  padding: 52px 70px 50px 318px;
  grid-template-columns: minmax(390px, 1fr) minmax(360px, .86fr);
  gap: 54px;
  border: 1px solid rgba(186, 166, 198, .38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 42%, rgba(255,255,255,.9), transparent 16rem),
    linear-gradient(100deg, #f9f3fb 0%, #fff 56%, #f7edf9 100%);
  box-shadow: 0 18px 48px rgba(105, 85, 120, .1);
}

.home-page .spirit-band::after {
  content: "Shirayuri Spirit";
  position: absolute;
  right: 48px;
  top: 20px;
  color: rgba(128, 91, 151, .1);
  font-size: clamp(48px, 6vw, 90px);
  line-height: 1;
  font-style: italic;
  letter-spacing: .04em;
  pointer-events: none;
}

.home-page .spirit-copy {
  position: relative;
  z-index: 2;
}

.home-page .spirit-band h2 {
  color: #251d30;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.55;
}

.home-page .spirit-band p {
  max-width: 560px;
  margin: 16px 0 22px;
  color: #51465b;
  font-size: 15px;
  line-height: 2;
}

.home-page .spirit-quote {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 22px 0 22px 34px;
  border-left: 1px solid rgba(130, 88, 151, .34);
}

.home-page .spirit-quote p {
  margin: 0 0 10px;
  color: #2d2635;
  font-size: 18px;
  line-height: 2;
}

.home-page .spirit-quote cite {
  color: #6c5b76;
  font-size: 13px;
  font-style: normal;
}

.home-page .outline-button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(128, 88, 151, .32);
  border-radius: 999px;
  color: #725083;
  background: rgba(255,255,255,.58);
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.home-page .outline-button:hover {
  color: #fff;
  background: #8f6aa3;
  transform: translateY(-1px);
}

.home-page .spirit-band .cta-lily {
  left: 34px;
  bottom: -18px;
  width: 300px;
  height: 260px;
  transform: rotate(-16deg) scale(1.05);
}

.home-page .instagram-strip {
  max-width: 1340px;
  min-height: 138px;
  margin: 0 auto 58px;
  padding: 28px 28px 28px 34px;
  display: grid;
  grid-template-columns: 190px minmax(420px, 1fr) 178px;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(186, 166, 198, .32);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 38px rgba(104, 82, 116, .08);
}

.home-page .instagram-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-page .instagram-icon {
  width: 34px;
  height: 34px;
  border: 3px solid #8d65a2;
  border-radius: 10px;
  position: relative;
}

.home-page .instagram-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 3px solid #8d65a2;
  border-radius: 50%;
}

.home-page .instagram-icon::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8d65a2;
}

.home-page .instagram-profile h2 {
  margin: 0;
  color: #2c2435;
  font-size: 20px;
  line-height: 1.2;
}

.home-page .instagram-profile p {
  margin: 4px 0 0;
  color: #6c5f74;
  font-family: var(--sans);
  font-size: 13px;
}

.home-page .instagram-gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(72px, 1fr));
  gap: 12px;
}

.home-page .insta-thumb {
  display: block;
  aspect-ratio: 1.25;
  border-radius: 7px;
  overflow: hidden;
  background: #eee;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.34);
}

.home-page .thumb-lily {
  background:
    radial-gradient(ellipse at 42% 38%, #fff 0 23px, transparent 25px),
    radial-gradient(ellipse at 62% 55%, #fff 0 18px, transparent 20px),
    linear-gradient(145deg, #6b8a42 0 38%, #e9d8ef 39% 100%);
}

.home-page .thumb-campus,
.home-page .thumb-school {
  background:
    linear-gradient(180deg, #7fb0dc 0 46%, #f7f4eb 47% 72%, #5f7e3f 73% 100%);
}

.home-page .thumb-meeting {
  background:
    radial-gradient(circle at 20% 40%, #26212a 0 10px, transparent 11px),
    radial-gradient(circle at 41% 38%, #26212a 0 10px, transparent 11px),
    radial-gradient(circle at 63% 41%, #26212a 0 10px, transparent 11px),
    linear-gradient(180deg, #dfcda9, #765d4d);
}

.home-page .thumb-chapel {
  background:
    linear-gradient(90deg, transparent 46%, rgba(255,255,255,.68) 47% 53%, transparent 54%),
    radial-gradient(ellipse at 50% 42%, #497aa0 0 24px, transparent 26px),
    linear-gradient(180deg, #f1d9a7, #6e4c3d);
}

.home-page .thumb-light {
  background:
    radial-gradient(circle at 50% 43%, #fff6dd 0 24px, transparent 26px),
    radial-gradient(circle at 50% 43%, rgba(255, 222, 157, .4), transparent 72px),
    linear-gradient(130deg, #6b5147, #d0b79a);
}

.home-page .follow-button {
  min-width: 0;
  width: 100%;
  min-height: 46px;
  gap: 18px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
}

.home-page .address-change-strip {
  grid-template-columns: minmax(270px, .9fr) minmax(420px, 1.35fr) 210px;
}

.home-page .address-change-profile {
  gap: 18px;
}

.home-page .address-change-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(141, 101, 162, .28);
  border-radius: 14px;
  color: #8d65a2;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.92), transparent 58%),
    #f8f0fb;
  box-shadow: 0 12px 26px rgba(109, 82, 126, .11);
}

.home-page .address-change-icon svg {
  width: 27px;
  height: 27px;
}

.home-page .address-change-copy {
  min-width: 0;
  display: grid;
  gap: 12px;
  color: #3f354a;
}

.home-page .address-change-copy p {
  max-width: 620px;
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
}

.home-page .address-change-copy ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.home-page .address-change-copy li {
  padding: 6px 12px;
  border: 1px solid rgba(141, 101, 162, .18);
  border-radius: 999px;
  color: #765188;
  background: rgba(255,255,255,.72);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.home-page .site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.62), transparent 20rem),
    linear-gradient(180deg, #f9f4fb, #f5edf8);
  color: #302838;
  border-top: 1px solid rgba(186, 166, 198, .32);
}

.home-page .footer-button,
.home-page .mail-card {
  background: #fff;
}

.home-page .site-footer,
.home-page .site-footer a,
.home-page .site-footer p,
.home-page .site-footer h2,
.home-page .site-footer small,
.home-page .footer-bottom {
  color: #332a3d;
}

.home-page .site-footer .brand-mark {
  color: var(--purple);
  filter: none;
}

.home-page .site-footer .brand-name {
  color: #332a3d;
  text-shadow: none;
}

.home-page .site-footer .brand-en {
  color: #75697d;
  text-shadow: none;
}

.home-page .footer-column a,
.home-page .footer-social a {
  color: #51465b;
}

.home-page .sns-row a {
  color: #7c568f;
  background: #fff;
  box-shadow: 0 8px 20px rgba(102, 80, 117, .1);
}

.home-page .footer-bottom small {
  opacity: .72;
}
@media (max-width: 1180px) {
  .home-page .header-inner {
    grid-template-columns: 1fr;
    min-height: 108px;
    align-content: center;
    gap: 0;
  }

  .home-page .global-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .home-page .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 142px;
  }

  .home-page .hero-copy {
    padding: 38px 0 0;
  }

  .home-page .hero-art {
    min-height: 500px;
    max-width: 760px;
    width: 100%;
    margin: -50px 0 0 auto;
  }

  .home-page .home-board {
    grid-template-columns: 1fr;
  }

  .home-page .instagram-strip {
    grid-template-columns: 180px 1fr;
  }

  .home-page .address-change-strip {
    grid-template-columns: minmax(260px, 1fr) 210px;
  }

  .home-page .follow-button {
    grid-column: 1 / -1;
    justify-self: end;
    width: 180px;
  }
}

@media (max-width: 920px) {
  .home-page .site-header {
    position: absolute;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
  }

  .home-page .header-inner {
    grid-template-columns: 1fr auto;
    min-height: auto;
  }

  .home-page .menu-button {
    border-color: rgba(255,255,255,.56);
    background: rgba(255,255,255,.22);
  }

  .home-page .menu-button span {
    background: #fff;
  }

  .home-page .global-nav {
    color: var(--ink);
    background: rgba(255,255,255,.97);
  }

  .home-page .global-nav a {
    color: var(--ink);
    text-shadow: none;
  }

  .home-page .global-nav .nav-contact {
    color: #fff;
    margin: 8px 0 0;
    text-align: center;
  }

  .home-page .hero {
    min-height: 820px;
  }

  .home-page .hero-inner {
    min-height: 820px;
    padding: 116px 24px 128px;
  }

  .home-page .hero-copy {
    padding-top: 18px;
  }

  .home-page .hero h1 {
    font-size: clamp(42px, 10vw, 58px);
  }

  .home-page .hero-art {
    min-height: 390px;
    margin-top: -22px;
  }

  .home-page .photo-wide {
    right: -190px;
    width: 720px;
  }

  .home-page .photo-large {
    right: 82px;
    bottom: 96px;
    width: 360px;
  }

  .home-page .photo-small {
    right: 206px;
    bottom: 275px;
    height: 250px;
  }

  .home-page .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page .quick-item,
  .home-page .quick-item:nth-child(3),
  .home-page .quick-item:nth-child(n + 4) {
    border-right: 1px solid rgba(142, 113, 157, .18);
    border-top: 1px solid rgba(142, 113, 157, .18);
  }

  .home-page .quick-item:nth-child(1),
  .home-page .quick-item:nth-child(2) {
    border-top: 0;
  }

  .home-page .quick-item:nth-child(2n) {
    border-right: 0;
  }

  .home-page .feature-cards {
    grid-template-columns: 1fr;
  }

  .home-page .feature-cards .content-card {
    min-height: 280px;
  }

  .home-page .spirit-band {
    grid-template-columns: 1fr;
    padding: 170px 28px 34px;
    gap: 24px;
  }

  .home-page .spirit-band .cta-lily {
    left: 50%;
    top: -24px;
    bottom: auto;
    transform: translateX(-50%) rotate(-16deg) scale(.78);
  }

  .home-page .spirit-quote {
    padding-left: 22px;
  }

  .home-page .instagram-strip {
    grid-template-columns: 1fr;
  }

  .home-page .address-change-strip {
    grid-template-columns: 1fr;
  }

  .home-page .instagram-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .home-page .header-inner,
  .home-page .hero-inner,
  .home-page .quick-links,
  .home-page .home-board,
  .home-page .instagram-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-page .brand {
    min-width: 0;
  }

  .home-page .brand-mark {
    width: 44px;
    height: 44px;
  }

  .home-page .brand-name {
    font-size: 18px;
  }

  .home-page .brand-en {
    font-size: 8px;
  }

  .home-page .hero {
    min-height: 780px;
  }

  .home-page .hero-inner {
    min-height: 780px;
    padding-top: 102px;
  }

  .home-page .eyebrow {
    font-size: 14px;
  }

  .home-page .hero-lead {
    font-size: 14px;
  }

  .home-page .hero-art {
    min-height: 330px;
    transform: translateX(20px) scale(.86);
    transform-origin: right bottom;
  }

  .home-page .scroll-cue {
    display: none;
  }

  .home-page .quick-links {
    margin-top: -46px;
  }

  .home-page .quick-grid {
    grid-template-columns: 1fr;
  }

  .home-page .quick-item,
  .home-page .quick-item:nth-child(2n),
  .home-page .quick-item:nth-child(1),
  .home-page .quick-item:nth-child(2) {
    min-height: 94px;
    border-right: 0;
    border-top: 1px solid rgba(142, 113, 157, .18);
  }

  .home-page .quick-item:first-child {
    border-top: 0;
  }

  .home-page .news-row {
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    padding: 12px 0;
  }

  .home-page .news-row time,
  .home-page .tag {
    grid-row: 1;
  }

  .home-page .news-text {
    grid-column: 1 / -1;
  }

  .home-page .row-arrow {
    display: none;
  }

  .home-page .spirit-band,
  .home-page .instagram-strip {
    margin-left: 18px;
    margin-right: 18px;
  }

  .home-page .instagram-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 921px) {
  .home-page .hero h1 {
    white-space: nowrap;
    font-size: clamp(44px, 4.35vw, 58px);
  }
}
/* --- End bright home redesign overrides --- */

/* --- Lightened photo-inspired refresh --- */
:root {
  --ink: #1d1828;
  --muted: #6a6171;
  --purple: #8b65a1;
  --purple-deep: #68457e;
  --purple-soft: #c4a9d2;
  --cream: #fffdfd;
  --paper: #faf6fc;
  --line: #eee5f2;
  --white: #ffffff;
  --gold: #9a745b;
  --shadow: 0 28px 72px rgba(79, 91, 125, .12);
  --soft-shadow: 0 18px 48px rgba(94, 80, 112, .1);
}

body {
  background:
    radial-gradient(circle at 11% 9%, rgba(235, 244, 255, .8), transparent 26rem),
    radial-gradient(circle at 87% 18%, rgba(250, 240, 255, .72), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fffcff 46%, #ffffff 100%);
}

.site-header {
  background: rgba(255, 255, 255, .95);
  border-bottom-color: rgba(187, 171, 202, .24);
  box-shadow: 0 8px 24px rgba(72, 58, 88, .05);
}

.primary-button,
.contact-form button {
  background: linear-gradient(180deg, #9a72ad, #6f4a86);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.2),
    0 16px 34px rgba(104, 74, 126, .22);
}

.home-page::before {
  opacity: .09;
}

.home-page .site-header {
  background: linear-gradient(180deg, rgba(57, 85, 130, .3), rgba(57, 85, 130, 0));
}

.home-page .header-inner {
  max-width: 1440px;
  grid-template-columns: auto 1fr auto;
}

.home-page .brand {
  grid-column: 1;
}

.home-page .global-nav {
  grid-column: 2;
  grid-row: 1;
}

.home-page .menu-button {
  grid-column: 3;
  grid-row: 1;
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.home-page .menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.home-page .global-nav .nav-contact {
  background: rgba(138, 83, 153, .82);
}

.home-page .hero {
  min-height: 790px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.74) 34%, rgba(255,255,255,.04) 66%),
    radial-gradient(circle at 18% 48%, rgba(250, 242, 255, .86), transparent 30rem),
    radial-gradient(circle at 88% 15%, rgba(255,255,255,.84), transparent 12rem),
    linear-gradient(180deg, #7fb0e2 0%, #cae5f7 48%, #f8fbf4 73%, #edf7e6 100%);
}

.home-page .hero::before {
  background:
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.75) 0 2.4rem, transparent 8rem),
    radial-gradient(circle at 44% 14%, rgba(255,255,255,.45), transparent 15rem),
    radial-gradient(circle at 73% 58%, rgba(255,255,255,.4), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.68) 90%);
}

.home-page .hero::after {
  height: 250px;
  background:
    radial-gradient(ellipse at 9% 64%, #8fa95c 0 11rem, transparent 11.2rem),
    radial-gradient(ellipse at 28% 54%, #6f934b 0 10rem, transparent 10.3rem),
    radial-gradient(ellipse at 58% 48%, #668947 0 13rem, transparent 13.2rem),
    radial-gradient(ellipse at 84% 57%, #86a65b 0 11rem, transparent 11.2rem),
    linear-gradient(180deg, transparent 0, rgba(105, 142, 70, .86) 43%, #7f9f4d 100%);
}

.home-page .hero-inner {
  min-height: 790px;
  padding: 148px 32px 132px;
}

.home-page .hero-copy {
  padding: 88px 0 0 40px;
}

.home-page .eyebrow {
  color: #756982;
}

.home-page .hero h1 {
  color: #201c2b;
  text-shadow: 0 2px 18px rgba(255,255,255,.62);
}

.home-page .hero-lead {
  color: #3f3949;
}

.home-page .hero .primary-button {
  color: #6f4d7f;
  border-color: rgba(111, 77, 127, .32);
  background: rgba(255,255,255,.54);
}

.home-page .hero .primary-button:hover {
  background: rgba(139, 101, 161, .88);
}

.home-page .photo-large {
  right: 170px;
  bottom: 108px;
  width: 455px;
  height: 252px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.88), rgba(242, 240, 229, .92)),
    linear-gradient(180deg, #ffffff, #e7e2d4);
}

.home-page .photo-large::before,
.home-page .photo-small::before {
  background: linear-gradient(180deg, #526b72, #334d54);
}

.home-page .photo-small {
  right: 314px;
  bottom: 314px;
  width: 136px;
  height: 330px;
  background: linear-gradient(90deg, #fffef8, #e6e0d1);
}

.home-page .lily-main {
  right: -2px;
  bottom: -30px;
}

.home-page .bloom i {
  background: radial-gradient(ellipse at 60% 22%, #fff 0 28%, #fffaf1 58%, #e6dcca 100%);
}

.home-page .petal {
  opacity: .9;
  box-shadow: 0 12px 24px rgba(118, 103, 133, .12);
}

.home-page .quick-grid,
.home-page .instagram-strip {
  border-color: rgba(189, 172, 204, .26);
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 70px rgba(82, 72, 96, .12);
}

.home-page .quick-item:hover,
.home-page .news-row:hover {
  background: #fdf9ff;
}

.home-page .tag {
  background: #bba6cc;
}

.home-page .feature-cards .content-card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(88, 74, 100, .15);
}

.home-page .feature-cards .card-image::after {
  background:
    linear-gradient(180deg, rgba(40, 28, 47, .02) 0%, rgba(87, 59, 99, .66) 100%),
    linear-gradient(110deg, rgba(255,255,255,.14), transparent 42%);
}

.home-page .feature-learn .image-chapel {
  background: url("assets/home/feature-school.jpeg") center / cover no-repeat;
}

.home-page .feature-connect .image-city {
  background: url("assets/home/feature-connect.jpeg") center 42% / cover no-repeat;
}

.home-page .feature-support .image-support {
  background: url("assets/home/feature-support-donation.png") 64% center / cover no-repeat;
}

.home-page .spirit-band {
  min-height: 252px;
  padding: 44px 64px 44px 306px;
  border-color: rgba(190, 172, 205, .34);
  background:
    radial-gradient(circle at 13% 42%, rgba(255,255,255,.92), transparent 16rem),
    linear-gradient(100deg, #fbf7fd 0%, #ffffff 56%, #f9f0fb 100%);
  box-shadow: 0 20px 54px rgba(101, 86, 116, .09);
}

.home-page .instagram-strip {
  background: rgba(255,255,255,.92);
}

.home-page .follow-button {
  background: linear-gradient(180deg, #9269a8, #68467e);
}

.home-page .site-footer,
.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.72), transparent 22rem),
    linear-gradient(180deg, #fbf7fd, #f8f1fb);
  border-top-color: rgba(190, 172, 205, .28);
}

.site-footer,
.site-footer a,
.site-footer p,
.site-footer h2,
.site-footer small,
.footer-bottom {
  color: #332a3d;
}

.site-footer .brand-mark {
  color: var(--purple);
  filter: none;
}

.site-footer .brand-name {
  color: #332a3d;
  text-shadow: none;
}

.site-footer .brand-en {
  color: #75697d;
  text-shadow: none;
}

.footer-column a,
.footer-social a {
  color: #51465b;
}

.footer-button,
.mail-card {
  background: #fff;
}

.about-hero,
.subpage-hero,
.support-hero,
.contact-hero {
  background:
    radial-gradient(circle at 79% 40%, rgba(255,255,255,.84), transparent 17rem),
    radial-gradient(circle at 20% 24%, rgba(239, 247, 255, .72), transparent 22rem),
    linear-gradient(105deg, #f8fbff 0%, #fff9ff 54%, #eef7ff 100%);
  border-bottom-color: rgba(177, 200, 224, .28);
}

.about-hero::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,.48), rgba(255,255,255,.18) 48%, transparent),
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.5), transparent 18rem);
}

.letter-sheet,
.purpose-card,
.category-tabs,
.branch-list,
.branch-detail-card,
.branch-contact-card,
.archive-card,
.contact-form {
  border-color: rgba(190, 172, 205, .28);
  background: rgba(255,255,255,.86);
  box-shadow: var(--soft-shadow);
}

.category-tabs .is-current,
.branch-name-pill {
  background: linear-gradient(180deg, #9a72ad, #6f4a86);
}

.branch-row,
.mini-news {
  border-bottom-color: rgba(181, 163, 195, .34);
}

.branch-row time,
.mini-news time {
  color: #776277;
}

.archive-card a,
.outline-button,
.outline-cta {
  border-color: rgba(139, 101, 161, .34);
  color: #755188;
  background: rgba(255,255,255,.66);
}

.journal-art {
  filter: saturate(.92) brightness(1.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(179, 154, 195, .34);
  background: rgba(255,255,255,.78);
}

@media (max-width: 1180px) and (min-width: 921px) {
  .home-page .header-inner {
    grid-template-columns: 1fr;
  }

  .home-page .menu-button {
    display: none;
  }

  .home-page .global-nav {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 920px) {
  .home-page .header-inner {
    grid-template-columns: 1fr auto;
  }

  .home-page .menu-button {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
  }

  .home-page .global-nav {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    max-height: 0;
    padding: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 253, 249, .97);
    box-shadow: none;
    transition: max-height .28s ease, padding .28s ease, border-color .28s ease, box-shadow .28s ease;
  }

  .home-page .global-nav a {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(114, 88, 70, .12);
    color: var(--ink);
    font-size: 15px;
    text-shadow: none;
  }

  .home-page .global-nav a:last-child {
    border-bottom: 0;
  }

  .home-page .global-nav a::after {
    display: none;
  }

  .home-page .global-nav .nav-contact {
    min-height: auto;
    margin: 0;
    padding: 13px 14px;
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    text-align: left;
    backdrop-filter: none;
  }

  .home-page .nav-toggle:checked ~ .global-nav {
    max-height: 430px;
    padding: 8px;
    border: 1px solid rgba(133, 104, 83, .18);
    box-shadow: 0 14px 28px rgba(78, 57, 43, .12);
  }

  .home-page .hero {
    min-height: 820px;
  }

  .home-page .hero-copy {
    padding-top: 12px;
  }

  .home-page .spirit-band {
    padding: 168px 28px 34px;
  }
}

@media (max-width: 640px) {
  .home-page .hero-copy {
    padding-left: 0;
  }
}
/* --- End lightened photo-inspired refresh --- */

/* --- First-view memory animation --- */
.home-page .hero-copy .eyebrow,
.home-page .hero-copy h1,
.home-page .hero-copy .hero-lead,
.home-page .hero-copy .primary-button {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-text-rise .95s cubic-bezier(.2, .72, .18, 1) forwards;
}

.home-page .hero-copy .eyebrow {
  animation-delay: .25s;
}

.home-page .hero-copy h1 {
  animation-delay: .55s;
}

.home-page .hero-copy .hero-lead {
  animation-delay: .9s;
}

.home-page .hero-copy .primary-button {
  animation-delay: 1.25s;
}

@keyframes hero-text-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.home-page .petal {
  top: -8%;
  bottom: auto;
  z-index: 8;
  opacity: 0;
  animation-name: petal-fall-slow;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
}

.home-page .petal-1 { left: 8%; animation-duration: 19s; animation-delay: -4s; --petal-x: 58px; --petal-r: 210deg; }
.home-page .petal-2 { left: 20%; animation-duration: 23s; animation-delay: -12s; --petal-x: -42px; --petal-r: -190deg; }
.home-page .petal-3 { left: 36%; animation-duration: 21s; animation-delay: -7s; --petal-x: 72px; --petal-r: 240deg; }
.home-page .petal-4 { left: 54%; animation-duration: 26s; animation-delay: -16s; --petal-x: -66px; --petal-r: -260deg; }
.home-page .petal-5 { left: 68%; width: 44px; height: 16px; animation-duration: 22s; animation-delay: -2s; --petal-x: 44px; --petal-r: 180deg; }
.home-page .petal-6 { left: 78%; width: 58px; height: 20px; animation-duration: 28s; animation-delay: -18s; --petal-x: -92px; --petal-r: -320deg; }
.home-page .petal-7 { left: 88%; width: 38px; height: 14px; animation-duration: 24s; animation-delay: -9s; --petal-x: 54px; --petal-r: 260deg; }
.home-page .petal-8 { left: 47%; width: 48px; height: 17px; animation-duration: 30s; animation-delay: -22s; --petal-x: -78px; --petal-r: -280deg; }

@keyframes petal-fall-slow {
  0% {
    opacity: 0;
    transform: translate3d(0, -80px, 0) rotate(-24deg);
  }
  9%,
  86% {
    opacity: .82;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--petal-x), 910px, 0) rotate(var(--petal-r));
  }
}

.home-page .memory-photo {
  position: absolute;
  padding: 12px;
  border: 1px solid rgba(179, 145, 104, .34);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.62), transparent 6rem),
    linear-gradient(180deg, #f8ead2, #ecd1a3);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.52),
    0 28px 62px rgba(66, 58, 48, .2);
  opacity: 0;
  overflow: hidden;
  will-change: opacity, transform, filter;
}

.home-page .memory-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  filter: sepia(.18) saturate(.92) contrast(1.03);
}

.home-page .memory-photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255,255,255,.2), transparent 34%, rgba(71, 46, 28, .1)),
    radial-gradient(circle at 50% 40%, transparent 56%, rgba(70, 43, 23, .13));
  mix-blend-mode: multiply;
}

.home-page .memory-1,
.home-page .memory-2,
.home-page .memory-3,
.home-page .memory-4 {
  z-index: 5;
  animation: memory-card-appear 10s cubic-bezier(.18, .78, .22, 1) forwards;
}

.home-page .memory-1 {
  right: 260px;
  bottom: 230px;
  width: 360px;
  height: 250px;
  transform: translate3d(34px, 18px, 0) rotate(-8deg) scale(.92);
  animation-delay: .35s;
}

.home-page .memory-2 {
  right: 66px;
  bottom: 292px;
  width: 330px;
  height: 236px;
  transform: translate3d(30px, 24px, 0) rotate(7deg) scale(.92);
  animation-delay: 1.2s;
}

.home-page .memory-3 {
  right: 360px;
  bottom: 84px;
  width: 350px;
  height: 248px;
  transform: translate3d(36px, 26px, 0) rotate(6deg) scale(.92);
  animation-delay: 2.05s;
}

.home-page .memory-4 {
  right: 90px;
  bottom: 76px;
  width: 380px;
  height: 246px;
  transform: translate3d(32px, 22px, 0) rotate(-5deg) scale(.92);
  animation-delay: 2.9s;
}

.home-page .memory-final {
  right: 36px;
  bottom: 132px;
  z-index: 6;
  width: min(54vw, 720px);
  height: 390px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 24px;
  background: rgba(255,255,255,.42);
  box-shadow: 0 34px 78px rgba(51, 72, 96, .22);
  transform: translate3d(0, 26px, 0) scale(1.04);
  filter: blur(15px) brightness(1.12);
  animation: final-campus-focus 13s cubic-bezier(.18, .82, .2, 1) 13.6s forwards;
}

.home-page .memory-final img {
  border-radius: 24px;
  filter: saturate(1.04) brightness(1.05);
}

.home-page .memory-final::after {
  inset: 0;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.12), transparent 34%),
    linear-gradient(180deg, transparent 56%, rgba(36, 65, 37, .18));
  mix-blend-mode: normal;
}

@keyframes memory-card-appear {
  0% {
    opacity: 0;
    filter: blur(10px) sepia(.25);
  }
  12%,
  34% {
    opacity: .96;
    transform: translate3d(0, 0, 0) rotate(var(--card-rotate, 0deg)) scale(1);
    filter: blur(0) sepia(.1);
  }
  58%,
  100% {
    opacity: 0;
    transform: translate3d(-24px, -20px, 0) rotate(var(--card-rotate, 0deg)) scale(1.02);
    filter: blur(8px) sepia(.35);
  }
}

.home-page .memory-1 { --card-rotate: -8deg; }
.home-page .memory-2 { --card-rotate: 7deg; }
.home-page .memory-3 { --card-rotate: 6deg; }
.home-page .memory-4 { --card-rotate: -5deg; }

@keyframes final-campus-focus {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(1.07);
    filter: blur(18px) brightness(1.16);
  }
  38% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0) brightness(1.04);
  }
}

.home-page .lily-main {
  opacity: 0;
  animation: lily-soft-focus 3.3s cubic-bezier(.16, .76, .24, 1) 4.15s forwards;
  will-change: opacity, transform, filter;
}

@keyframes lily-soft-focus {
  0% {
    opacity: 0;
    transform: rotate(10deg) scale(1.46);
    filter: blur(18px) brightness(1.28);
  }
  54% {
    opacity: .92;
  }
  100% {
    opacity: 1;
    transform: rotate(10deg) scale(1.28);
    filter: blur(.1px) brightness(1);
  }
}

.home-page .hero-art .photo-scene,
.home-page .memory-photo .photo-scene {
  display: none;
}

@media (max-width: 1180px) {
  .home-page .memory-final {
    right: 10px;
    bottom: 120px;
    width: min(86vw, 700px);
    height: 360px;
  }

  .home-page .memory-1,
  .home-page .memory-2,
  .home-page .memory-3,
  .home-page .memory-4 {
    width: 300px;
    height: 214px;
  }

  .home-page .memory-1 { right: 310px; bottom: 258px; }
  .home-page .memory-2 { right: 80px; bottom: 278px; }
  .home-page .memory-3 { right: 340px; bottom: 86px; }
  .home-page .memory-4 { right: 80px; bottom: 78px; }
}

@media (max-width: 920px) {
  .home-page .memory-photo {
    border-radius: 17px;
  }

  .home-page .memory-final {
    right: -12px;
    bottom: 72px;
    width: 620px;
    max-width: none;
    height: 330px;
  }

  .home-page .memory-1,
  .home-page .memory-2,
  .home-page .memory-3,
  .home-page .memory-4 {
    width: 244px;
    height: 174px;
  }

  .home-page .memory-1 { right: 230px; bottom: 228px; }
  .home-page .memory-2 { right: 36px; bottom: 238px; }
  .home-page .memory-3 { right: 238px; bottom: 84px; }
  .home-page .memory-4 { right: 28px; bottom: 78px; }

  .home-page .lily-main {
    bottom: -52px;
  }
}

@media (max-width: 640px) {
  .home-page .memory-final {
    right: -74px;
    bottom: 48px;
    width: 520px;
    height: 300px;
  }

  .home-page .memory-1,
  .home-page .memory-2,
  .home-page .memory-3,
  .home-page .memory-4 {
    width: 196px;
    height: 140px;
    padding: 8px;
  }

  .home-page .memory-1 { right: 198px; bottom: 208px; }
  .home-page .memory-2 { right: 20px; bottom: 218px; }
  .home-page .memory-3 { right: 204px; bottom: 80px; }
  .home-page .memory-4 { right: 20px; bottom: 72px; }

  .home-page .memory-photo img,
  .home-page .memory-photo::after {
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-copy .eyebrow,
  .home-page .hero-copy h1,
  .home-page .hero-copy .hero-lead,
  .home-page .hero-copy .primary-button,
  .home-page .memory-photo,
  .home-page .lily-main {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .home-page .petal {
    animation: none;
    opacity: .45;
  }

  .home-page .memory-1,
  .home-page .memory-2,
  .home-page .memory-3,
  .home-page .memory-4 {
    display: none;
  }
}

.home-page:not(.is-hero-ready) .hero-copy .eyebrow,
.home-page:not(.is-hero-ready) .hero-copy h1,
.home-page:not(.is-hero-ready) .hero-copy .hero-lead,
.home-page:not(.is-hero-ready) .hero-copy .primary-button,
.home-page:not(.is-hero-ready) .memory-photo,
.home-page:not(.is-hero-ready) .hero-photo-bg,
.home-page:not(.is-hero-ready) .lily-main,
.home-page:not(.is-hero-ready) .petal {
  animation: none;
}

.home-page:not(.is-hero-ready) .hero-copy .eyebrow,
.home-page:not(.is-hero-ready) .hero-copy h1,
.home-page:not(.is-hero-ready) .hero-copy .hero-lead,
.home-page:not(.is-hero-ready) .hero-copy .primary-button {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(7px);
}

.home-page:not(.is-hero-ready) .memory-photo,
.home-page:not(.is-hero-ready) .hero-photo-bg,
.home-page:not(.is-hero-ready) .lily-main,
.home-page:not(.is-hero-ready) .petal {
  opacity: 0;
}
/* --- End first-view memory animation --- */

/* --- Hero photo background refinement --- */
.home-page .hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 35%, rgba(255,255,255,.36) 64%, rgba(226, 241, 253, .4) 100%),
    linear-gradient(180deg, #d9ecfb 0%, #f8fbff 58%, #ffffff 100%);
}

.home-page .hero::after,
.home-page .hero-art::before {
  display: none;
}

.home-page .hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.045);
  filter: blur(16px) brightness(1.14);
  animation: hero-photo-background-focus 5.8s cubic-bezier(.18, .82, .2, 1) 4.8s forwards;
  will-change: opacity, transform, filter;
}

.home-page .hero-photo-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 72% 42%;
}

.home-page .hero-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 33%, rgba(255,255,255,.42) 57%, rgba(255,255,255,.14) 100%),
    linear-gradient(180deg, rgba(118, 169, 214, .12), rgba(255,255,255,.18) 58%, rgba(255,255,255,.5) 100%);
  pointer-events: none;
}

@keyframes hero-photo-background-focus {
  0% {
    opacity: 0;
    transform: scale(1.055);
    filter: blur(18px) brightness(1.16);
  }
  42% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) brightness(1.05);
  }
}

.home-page .hero-inner,
.home-page .scroll-cue,
.home-page .paper-grain,
.home-page .petal {
  z-index: 4;
}

.home-page .memory-final {
  display: none;
}

@media (max-width: 920px) {
  .home-page .hero-photo-bg img {
    object-position: 64% 52%;
  }

  .home-page .hero-photo-bg::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 42%, rgba(255,255,255,.28) 100%),
      linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.28));
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-photo-bg {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}
/* --- End hero photo background refinement --- */

/* --- Mobile hero animation visibility --- */
@keyframes hero-photo-background-focus-mobile {
  0% {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(18px) brightness(1.16);
  }
  45% {
    opacity: .86;
    filter: blur(5px) brightness(1.09);
  }
  100% {
    opacity: .95;
    transform: scale(1.01);
    filter: blur(0) brightness(1.04);
  }
}

@keyframes lily-soft-focus-mobile {
  0% {
    opacity: 0;
    transform: rotate(10deg) scale(1.28);
    filter: blur(18px) brightness(1.22);
  }
  62% {
    opacity: .86;
  }
  100% {
    opacity: .96;
    transform: rotate(10deg) scale(1.02);
    filter: blur(.1px) brightness(1.02);
  }
}

@media (max-width: 640px) {
  .home-page .hero {
    min-height: 850px;
  }

  .home-page .hero-inner {
    display: block;
    min-height: 850px;
    padding: 104px 18px 44px;
  }

  .home-page .hero-copy {
    position: relative;
    z-index: 7;
    max-width: 342px;
    padding: 0;
  }

  .home-page .eyebrow {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .home-page .hero h1 {
    font-size: clamp(34px, 10.4vw, 41px);
    line-height: 1.28;
  }

  .home-page .hero-lead {
    max-width: 316px;
    margin: 20px 0 22px;
    font-size: 13.5px;
    line-height: 1.9;
  }

  .home-page .hero .primary-button {
    width: min(100%, 292px);
    min-height: 48px;
  }

  .home-page .hero-art {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    max-width: none;
    min-height: 850px;
    margin: 0;
    transform: none;
    pointer-events: none;
  }

  .home-page .quick-links {
    margin-top: 0;
  }

  .home-page .memory-1,
  .home-page .memory-2,
  .home-page .memory-3,
  .home-page .memory-4 {
    width: min(43vw, 168px);
    height: 118px;
    padding: 7px;
    animation-duration: 10s;
  }

  .home-page .memory-1 {
    left: 16px;
    right: auto;
    top: 506px;
    bottom: auto;
    animation-delay: .35s;
  }

  .home-page .memory-2 {
    right: 14px;
    top: 528px;
    bottom: auto;
    animation-delay: 1.2s;
  }

  .home-page .memory-3 {
    left: 28px;
    right: auto;
    top: 638px;
    bottom: auto;
    width: min(45vw, 176px);
    height: 122px;
    animation-delay: 2.05s;
  }

  .home-page .memory-4 {
    right: 16px;
    top: 660px;
    bottom: auto;
    width: min(45vw, 176px);
    height: 122px;
    animation-delay: 2.9s;
  }

  .home-page .lily-main {
    right: -96px;
    left: auto;
    bottom: -42px;
    width: 286px;
    height: 252px;
    animation: lily-soft-focus-mobile 3.3s cubic-bezier(.16, .76, .24, 1) 4.15s forwards;
  }

  .home-page .hero-photo-bg {
    animation: hero-photo-background-focus-mobile 5.8s cubic-bezier(.18, .82, .2, 1) 4.8s forwards;
  }

  .home-page .hero-photo-bg img {
    object-position: 60% 56%;
  }

  .home-page .hero-photo-bg::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.8) 42%, rgba(255,255,255,.22) 75%, rgba(255,255,255,.12) 100%),
      linear-gradient(90deg, rgba(255,255,255,.84), rgba(255,255,255,.2));
  }
}

@media (max-width: 420px) {
  .home-page .memory-1 {
    top: 492px;
  }

  .home-page .memory-2 {
    top: 516px;
  }

  .home-page .memory-3 {
    top: 618px;
  }

  .home-page .memory-4 {
    top: 642px;
  }
}
/* --- End mobile hero animation visibility --- */

/* --- Alumnae gallery --- */
.home-page .alumni-gallery {
  position: relative;
  max-width: 1340px;
  margin: 72px auto 0;
  padding: clamp(38px, 5vw, 70px) clamp(22px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid rgba(188, 169, 199, .34);
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, .9), transparent 22rem),
    radial-gradient(circle at 92% 8%, rgba(235, 246, 255, .9), transparent 25rem),
    linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(248, 240, 252, .92) 46%, rgba(242, 249, 255, .9));
  box-shadow: 0 28px 78px rgba(91, 72, 100, .14);
}

.home-page .alumni-gallery::before {
  content: "Morioka Shirayuri";
  position: absolute;
  top: 26px;
  right: -30px;
  color: rgba(126, 86, 147, .08);
  font-size: clamp(58px, 10vw, 142px);
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.home-page .gallery-heading {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.home-page .gallery-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-page .gallery-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.home-page .gallery-heading h2 {
  margin: 8px 0 0;
  color: #221b2c;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.18;
  letter-spacing: .08em;
}

.home-page .gallery-heading p {
  max-width: 690px;
  margin: 18px 0 0;
  color: #514759;
  font-size: 16px;
  line-height: 2;
}

.home-page .gallery-count {
  flex: 0 0 auto;
  min-width: 118px;
  padding: 18px 20px;
  border: 1px solid rgba(143, 106, 163, .2);
  border-radius: 24px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 16px 34px rgba(99, 73, 111, .12);
  text-align: center;
}

.home-page .gallery-count strong {
  display: block;
  color: var(--purple-deep);
  font-size: 44px;
  line-height: 1;
}

.home-page .gallery-count span {
  color: #7b6d84;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-page .gallery-reel {
  position: relative;
  z-index: 1;
  margin: 34px 0 32px;
  height: 240px;
  padding: 0;
  overflow: hidden;
  contain: paint;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(34, 27, 44, .94), rgba(77, 56, 90, .92), rgba(34, 27, 44, .94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(0,0,0,.18);
}

.home-page .gallery-reel::before,
.home-page .gallery-reel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.home-page .gallery-reel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(34, 27, 44, 1), rgba(34, 27, 44, 0));
}

.home-page .gallery-reel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(34, 27, 44, 1), rgba(34, 27, 44, 0));
}

.home-page .gallery-reel-track {
  --gallery-slide-distance: 1344px;
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 22px 0;
  animation: gallery-reel-slide 48s linear infinite;
  will-change: transform;
}

.home-page .gallery-reel:hover .gallery-reel-track {
  animation-play-state: paused;
}

.home-page .gallery-reel img {
  width: 150px;
  height: 196px;
  flex: 0 0 150px;
  object-fit: cover;
  border: 7px solid rgba(255, 249, 237, .92);
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .28);
  transform: none;
}

@keyframes gallery-reel-slide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(var(--gallery-slide-distance) * -1), 0, 0); }
}

.home-page .gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 126px;
  gap: 14px;
}

.home-page .gallery-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #f5edf7;
  box-shadow: 0 16px 34px rgba(80, 60, 90, .14);
  cursor: pointer;
  isolation: isolate;
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}

.home-page .gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 14, 24, 0) 42%, rgba(18, 14, 24, .72) 100%),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.24), transparent 8rem);
  opacity: .92;
  transition: opacity .28s ease;
}

.home-page .gallery-card::after {
  content: "＋";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  font-family: var(--sans);
  font-weight: 900;
  transform: scale(.86);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.home-page .gallery-card:hover,
.home-page .gallery-card:focus-visible {
  transform: translateY(-5px) rotate(.3deg);
  box-shadow: 0 26px 48px rgba(76, 54, 88, .25);
  filter: saturate(1.06);
  outline: none;
}

.home-page .gallery-card:hover::before,
.home-page .gallery-card:focus-visible::before {
  opacity: .7;
}

.home-page .gallery-card:hover::after,
.home-page .gallery-card:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.home-page .gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .55s cubic-bezier(.16, .78, .18, 1);
}

.home-page .gallery-card:hover img,
.home-page .gallery-card:focus-visible img {
  transform: scale(1.09);
}

.home-page .gallery-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255,255,255,.95);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0,0,0,.38);
}

.home-page .gallery-card b {
  display: inline-flex;
  margin-right: 8px;
  color: #efe2ff;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .12em;
}

.home-page .gallery-card.is-wide {
  grid-column: span 2;
}

.home-page .gallery-card.is-tall {
  grid-row: span 2;
}

.home-page .gallery-card.is-wide.is-tall {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(143, 106, 163, .34), transparent 28rem),
    rgba(18, 13, 24, .84);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  display: grid;
  place-items: center;
}

.gallery-lightbox figure {
  width: min(880px, 100%);
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 34px 82px rgba(0,0,0,.34);
}

.gallery-lightbox img {
  width: 100%;
  max-height: min(76vh, 760px);
  display: block;
  object-fit: contain;
  border-radius: 20px;
  background: #251d2e;
}

.gallery-lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 14px 6px 2px;
  color: #251d2e;
  font-weight: 700;
}

.gallery-lightbox figcaption small {
  color: var(--purple);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  white-space: nowrap;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  transform: scale(1.06);
  background: rgba(255,255,255,.28);
}

.gallery-lightbox-close {
  top: -18px;
  right: max(0px, calc(50% - 470px));
  width: 46px;
  height: 46px;
  font-size: 28px;
  line-height: 1;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 42px;
  transform: translateY(-50%);
}

.gallery-lightbox-nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.gallery-lightbox-prev {
  left: 0;
}

.gallery-lightbox-next {
  right: 0;
}

body.is-gallery-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .home-page .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .home-page .alumni-gallery {
    margin-top: 54px;
    border-radius: 30px;
  }

  .home-page .gallery-heading {
    align-items: start;
    flex-direction: column;
  }

  .home-page .gallery-count {
    min-width: 100px;
  }

  .home-page .gallery-reel {
    margin-inline: 0;
  }

  .home-page .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 116px;
  }

  .home-page .gallery-card.is-wide {
    grid-column: span 2;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: -68px;
    transform: none;
  }

  .gallery-lightbox-nav:hover {
    transform: scale(1.06);
  }

  .gallery-lightbox-prev {
    left: calc(50% - 64px);
  }

  .gallery-lightbox-next {
    right: calc(50% - 64px);
  }

  .gallery-lightbox-close {
    top: -58px;
    right: 0;
  }
}

@media (max-width: 640px) {
  .home-page .gallery-heading h2 {
    font-size: 32px;
  }

  .home-page .gallery-reel-track {
    --gallery-slide-distance: 1088px;
  }

  .home-page .gallery-reel img {
    width: 118px;
    height: 136px;
    flex-basis: 118px;
  }

  .home-page .gallery-reel {
    height: 172px;
    padding: 18px 12px;
  }

  .home-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 118px;
    gap: 10px;
  }

  .home-page .gallery-card,
  .home-page .gallery-card.is-wide,
  .home-page .gallery-card.is-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .home-page .gallery-card:nth-child(5n + 1),
  .home-page .gallery-card:nth-child(7n + 4) {
    grid-row: span 2;
  }

  .home-page .gallery-card span {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: 12px;
  }

  .gallery-lightbox figure {
    padding: 9px;
    border-radius: 22px;
  }

  .gallery-lightbox img {
    border-radius: 16px;
  }

  .gallery-lightbox figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .gallery-reel-track {
    animation: none;
  }

  .home-page .gallery-card,
  .home-page .gallery-card img {
    transition: none;
  }
}

body.home-page {
  overflow-x: hidden;
}

@media (min-width: 921px) {
  .home-page .menu-button {
    display: none;
  }
}
/* --- End alumnae gallery --- */

/* --- About official content additions --- */
.about-local-nav {
  position: sticky;
  top: 86px;
  z-index: 18;
  max-width: 1088px;
  margin: 12px auto 0;
  padding: 10px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid rgba(234, 223, 240, .7);
  border-radius: 0 0 24px 24px;
  background: rgba(255, 250, 252, .82);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(93, 72, 105, .08);
}

.about-local-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(143, 106, 163, .26);
  border-radius: 999px;
  color: var(--purple-deep);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 24px rgba(92, 67, 110, .08);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.about-local-nav a:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  box-shadow: 0 16px 32px rgba(104, 66, 127, .22);
}

.official-section {
  scroll-margin-top: 156px;
}

.official-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: end;
  gap: 34px;
  margin-bottom: 28px;
}

.official-section-head h2 {
  margin: 4px 0 0;
  color: #24203a;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.35;
  letter-spacing: .08em;
}

.official-section-head p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #4d4658;
  font-size: 17px;
  line-height: 2;
}

.official-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.official-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.official-visual {
  width: 100%;
  max-width: 250px;
  justify-self: end;
  filter: drop-shadow(0 18px 26px rgba(95, 71, 106, .12));
}

.message-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.president-photo-card {
  position: sticky;
  top: 150px;
  margin: 0;
  padding: 18px 18px 22px;
  border: 1px solid rgba(234, 223, 240, .9);
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--soft-shadow);
}

.president-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 30px 30px;
  object-fit: cover;
  background: #f7eef9;
}

.president-photo-card figcaption {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: #302b39;
  text-align: center;
}

.president-photo-card span {
  color: var(--purple);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.president-photo-card strong {
  color: var(--purple-deep);
  font-size: 22px;
  letter-spacing: .08em;
}

.message-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(234, 223, 240, .9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, .98), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(250, 243, 252, .92));
  box-shadow: var(--soft-shadow);
}

.message-card::after {
  content: "Shirayuri";
  position: absolute;
  right: 28px;
  bottom: -28px;
  color: rgba(143, 106, 163, .08);
  font-size: clamp(62px, 12vw, 132px);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.message-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #302b39;
  font-size: 18px;
  line-height: 2.15;
}

.message-card p + p {
  margin-top: 20px;
}

.message-card .message-address {
  color: var(--purple-deep);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .06em;
}

.message-card .message-signature {
  margin-top: 34px;
  text-align: right;
  font-weight: 700;
}

.official-history {
  display: block;
  min-height: 0;
  padding-bottom: 0;
  scroll-margin-top: 156px;
}

.history-chronicle {
  position: relative;
  display: grid;
  gap: 12px;
}

.history-chronicle::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 172px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(143, 106, 163, .44), transparent);
}

.history-era {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(234, 223, 240, .82);
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 32px rgba(93, 72, 105, .08);
}

.history-era::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 164px;
  width: 17px;
  height: 17px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 1px rgba(143, 106, 163, .25), 0 10px 18px rgba(104, 66, 127, .22);
}

.history-era h3 {
  margin: 0;
  color: var(--purple-deep);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: .04em;
}

.history-era ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-era li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  color: #332d3a;
  font-size: 15px;
  line-height: 1.82;
}

.history-era time {
  color: var(--purple);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.officers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 24px;
  align-items: start;
}

.officers-grid-single {
  grid-template-columns: 1fr;
}

.roster-card,
.rule-card {
  border: 1px solid rgba(234, 223, 240, .88);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--soft-shadow);
}

.roster-card {
  overflow: hidden;
  border-radius: 28px;
}

.roster-card h3 {
  margin: 0;
  padding: 22px 24px 18px;
  color: var(--purple-deep);
  font-size: 23px;
  line-height: 1.45;
  letter-spacing: .08em;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.roster-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  color: #302b38;
  font-size: 15px;
}

.roster-table th,
.roster-table td {
  padding: 12px 16px;
  border-top: 1px solid rgba(234, 223, 240, .9);
  text-align: left;
  vertical-align: top;
}

.roster-table th {
  color: var(--purple-deep);
  background: rgba(247, 240, 251, .9);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.roster-table td:first-child {
  width: 32%;
  color: var(--purple);
  font-family: var(--sans);
  font-weight: 800;
}

.roster-table .roster-spacer td {
  padding: 7px 0;
  border-top: 0;
  background: rgba(247, 240, 251, .52);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rule-card {
  padding: 22px;
  border-radius: 24px;
}

.rule-card-wide {
  grid-column: 1 / -1;
}

.rule-card h3 {
  margin: 0 0 14px;
  color: var(--purple-deep);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: .04em;
}

.rule-card p,
.rule-card li {
  color: #352f3d;
  font-size: 15px;
  line-height: 1.82;
}

.rule-card p {
  margin: 0;
}

.rule-card p + p {
  margin-top: 12px;
}

.rule-card p + ol {
  margin-top: 12px;
}

.rule-card ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.3em;
}

@media (max-width: 920px) {
  .official-section-head,
  .message-layout,
  .officers-grid {
    grid-template-columns: 1fr;
  }

  .official-visual {
    justify-self: start;
    max-width: 220px;
  }

  .president-photo-card {
    position: static;
    max-width: 280px;
  }

  .history-chronicle::before,
  .history-era::before {
    display: none;
  }

  .history-era {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-local-nav {
    top: 92px;
    padding: 8px 20px;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    border-radius: 0 0 18px 18px;
  }

  .about-local-nav::-webkit-scrollbar {
    display: none;
  }

  .about-local-nav a {
    flex: 0 0 auto;
    justify-content: center;
    padding-inline: 12px;
    font-size: 12px;
  }

  .official-section,
  .official-history {
    scroll-margin-top: 164px;
  }

  .official-section-head {
    gap: 18px;
    margin-bottom: 20px;
  }

  .official-section-head p,
  .message-card p {
    font-size: 16px;
  }

  .message-card .message-address {
    font-size: 19px;
  }

  .history-era {
    padding: 20px;
  }

  .history-era li {
    grid-template-columns: 1fr;
    gap: 2px;
    font-size: 14px;
  }

  .roster-card h3,
  .rule-card {
    padding-inline: 20px;
  }

  .roster-table {
    min-width: 480px;
    font-size: 14px;
  }

  .rule-card h3 {
    font-size: 17px;
  }
}
/* --- End about official content additions --- */
