:root {
  --bg-main: #f7f9f8;
  --paper: #ffffff;
  --paper-soft: #fbfdfc;
  --ink: #10241d;
  --body: #4b5f56;
  --muted: #7d8f87;
  --brand-primary: #064E3B;
  --brand-primary-hover: #047857;
  --brand-soft: #0a6a4f;
  --brand-accent: #FFCE00;
  --brand-accent-deep: #F2B600;
  --mist: #eef4f1;
  --line: #e3ece8;
  --footer: #0f172a;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 36, 29, .04), 0 6px 16px -10px rgba(16, 36, 29, .12);
  --shadow-md: 0 14px 34px -20px rgba(6, 78, 59, .22), 0 6px 14px -10px rgba(6, 78, 59, .14);
  --shadow-lg: 0 32px 70px -34px rgba(6, 78, 59, .28), 0 14px 28px -18px rgba(6, 78, 59, .16);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cubic: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(238, 244, 241, .66) 0%, rgba(247, 249, 248, 0) 420px),
    var(--bg-main);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  font-family: "Arial Rounded MT Bold", "Microsoft JhengHei", "微軟正黑體", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main {
  flex: 1;
}

a {
  color: inherit;
}

img,
iframe {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

@keyframes headerFade {
  from { opacity: .72; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .68s var(--ease-out), transform .68s var(--ease-out);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 56px;
  background: rgba(247, 249, 248, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: headerFade .38s var(--ease-out) forwards;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 206, 0, .82);
  outline-offset: 3px;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo svg {
  width: 234px;
  height: auto;
  display: block;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.site-nav a {
  text-decoration: none;
}

.site-nav > ul > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 6px;
  color: var(--brand-primary);
  font-size: 15px;
  font-weight: 800;
}

.site-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--brand-accent);
  transition: width .28s var(--ease-cubic);
}

.site-nav > ul > li > a:hover::after,
.site-nav > ul > li > a.active::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 25px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 214px;
  margin-top: 18px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  list-style: none;
  overflow: hidden;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 42px rgba(16, 36, 29, .12);
}

.dropdown:hover .dropdown-menu {
  display: flex;
  animation: headerFade .22s ease forwards;
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: var(--body);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  color: var(--brand-primary);
  background: #fffbeb;
}

.nav-cta {
  padding: 11px 23px !important;
  border-radius: 999px;
  color: #1a1a1a !important;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-deep));
  box-shadow: 0 8px 18px rgba(242, 182, 0, .28);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--brand-primary);
  font-size: 25px;
  cursor: pointer;
  padding: 8px;
}

.page-hero {
  padding: 64px 24px 46px;
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 34px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.surface-card {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(227, 236, 232, .95);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  border-radius: 28px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brand-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-accent);
}

.hero-copy h1 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-copy p {
  margin-top: 22px;
  color: var(--body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.86;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), background .28s var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #162015;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-deep));
  box-shadow: 0 10px 22px rgba(242, 182, 0, .28);
}

.btn-quiet {
  color: var(--brand-primary);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(6, 78, 59, .94), rgba(10, 106, 79, .88)),
    var(--brand-primary);
  color: #fff;
}

.photo-placeholder {
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 206, 0, .18), rgba(255, 255, 255, .06)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 18px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
}

.photo-placeholder i {
  color: var(--brand-accent);
  font-size: 42px;
  margin-bottom: 14px;
}

.photo-placeholder strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.photo-placeholder span {
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  font-size: 14px;
}

.hero-panel-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.hero-stat {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .18);
}

.hero-stat strong {
  display: block;
  color: var(--brand-accent);
  font-size: 25px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat span {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
}

.info-hero {
  position: relative;
  overflow: hidden;
  padding-top: 52px;
  padding-bottom: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82) 0%, rgba(238, 244, 241, .64) 100%);
}

.info-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 78, 59, .04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 78, 59, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .62), transparent 76%);
}

.info-hero .page-hero-inner {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  align-items: center;
}

.info-hero .hero-copy {
  min-height: 390px;
  padding: 44px;
  border-color: rgba(227, 236, 232, .78);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 30px 80px -58px rgba(6, 78, 59, .4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.info-hero .eyebrow {
  letter-spacing: 0;
}

.info-hero .hero-copy h1 {
  max-width: 620px;
  font-size: 3.55rem;
  line-height: 1.12;
}

.info-hero .hero-copy p {
  max-width: 660px;
  font-size: 16.5px;
}

.info-hero-panel {
  --shine-shift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-height: 390px;
  padding: 22px;
  display: grid;
  gap: 14px;
  border-color: rgba(255, 255, 255, .2);
  background:
    linear-gradient(145deg, rgba(6, 78, 59, .98), rgba(12, 92, 70, .92)),
    var(--brand-primary);
  box-shadow: 0 38px 90px -54px rgba(6, 78, 59, .52);
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}

.info-hero-panel::before,
.info-hero-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.info-hero-panel::before {
  inset: -32%;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, .16) 46%, transparent 62%);
  opacity: .58;
  transform: translateX(var(--shine-shift));
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
}

.info-hero-panel::after {
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, .14);
}

.info-hero-screen,
.info-quick-grid {
  position: relative;
  z-index: 1;
}

.info-hero-screen {
  min-height: 180px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .075) 0 1px, transparent 1px 22px);
  text-align: left;
}

.info-hero-screen::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -42%;
  width: 34%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transform: rotate(18deg);
  animation: screenSheen 8s ease-in-out infinite;
}

.screen-kicker {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.screen-icon {
  width: 54px;
  height: 54px;
  margin: 14px 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #17210f;
  background: var(--brand-accent);
  box-shadow: 0 16px 32px rgba(255, 206, 0, .2);
  font-size: 26px;
}

.info-hero-screen h2 {
  max-width: 420px;
  color: #fff;
  font-size: 28px;
  line-height: 1.35;
}

.info-hero-screen p {
  max-width: 450px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
}

.info-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-quick-card {
  min-height: 104px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  border-radius: 20px;
  color: #fff;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .18);
  text-decoration: none;
  transition: transform .28s var(--ease-out), background .28s var(--ease-out), border-color .28s var(--ease-out);
}

.info-quick-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 206, 0, .45);
}

.info-quick-card i {
  color: var(--brand-accent);
  font-size: 21px;
}

.info-quick-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.info-quick-card span {
  color: rgba(255, 255, 255, .72);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.45;
}

.info-quick-card-accent {
  color: #17210f;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-deep));
  border-color: rgba(255, 206, 0, .68);
}

.info-quick-card-accent:hover {
  background: linear-gradient(135deg, #ffd83d, var(--brand-accent));
}

.info-quick-card-accent i,
.info-quick-card-accent span {
  color: rgba(23, 33, 15, .72);
}

@keyframes screenSheen {
  0%,
  42% {
    transform: translateX(0) rotate(18deg);
    opacity: 0;
  }

  52% {
    opacity: .72;
  }

  72%,
  100% {
    transform: translateX(560%) rotate(18deg);
    opacity: 0;
  }
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section.tight {
  padding-top: 38px;
}

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.section-title {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

.section-lead {
  margin-top: 16px;
  color: var(--body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.surface-card {
  border-radius: var(--radius-lg);
  padding: 34px;
}

.story-card h2,
.surface-card h3 {
  margin-bottom: 16px;
  color: var(--brand-primary);
  font-size: 25px;
  font-weight: 900;
}

.story-card p,
.surface-card p {
  color: var(--body);
  font-size: 16px;
  line-height: 1.9;
}

.story-card p + p {
  margin-top: 16px;
}

.quote-mark {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--brand-primary);
  background: #fffbeb;
  font-size: 28px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.principle-card {
  min-height: 232px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.principle-icon,
.step-no,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--brand-primary);
  background: #fffbeb;
  font-size: 22px;
}

.principle-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.principle-card p {
  color: var(--body);
  line-height: 1.78;
  font-size: 14.5px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.flow-step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
  border: 1px solid var(--line);
}

.step-no {
  width: 44px;
  height: 44px;
  color: #17210f;
  background: var(--brand-accent);
  font-size: 14px;
  font-weight: 900;
}

.flow-step h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 17px;
}

.flow-step p {
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.75;
}

.cta-band {
  margin-top: 20px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-primary), #0f766e);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
}

.info-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px 90px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.info-sidebar {
  position: sticky;
  top: 104px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.info-sidebar h2 {
  margin: 6px 10px 16px;
  color: var(--brand-primary);
  font-size: 20px;
}

.info-tab {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
  padding: 12px 14px;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--body);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.info-tab:hover {
  background: var(--mist);
  color: var(--brand-primary);
}

.info-tab.active {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(6, 78, 59, .2);
}

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

.info-pane {
  display: none;
  scroll-margin-top: 112px;
}

.info-pane.active {
  display: block;
  animation: fadeUp .45s var(--ease-out) both;
}

.pane-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.pane-head {
  padding: 32px 34px 24px;
  border-bottom: 1px solid var(--line);
}

.pane-head h2 {
  color: var(--brand-primary);
  font-size: 31px;
  font-weight: 900;
}

.pane-head p {
  margin-top: 10px;
  color: var(--body);
  line-height: 1.8;
  font-weight: 700;
}

.pane-body {
  padding: 30px 34px 34px;
}

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

.news-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s var(--ease-out);
}

.news-item:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 78, 59, .35);
  box-shadow: var(--shadow-md);
}

.date-box {
  min-height: 86px;
  border-radius: 18px;
  background: var(--mist);
  color: var(--brand-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.date-box strong {
  font-size: 30px;
  line-height: 1;
}

.date-box span {
  margin-top: 6px;
  font-size: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.news-text h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.news-text p,
.article-body {
  color: var(--body);
  line-height: 1.85;
  white-space: pre-line;
}

.article-image {
  width: 100%;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--brand-primary);
  font-weight: 900;
  text-decoration: none;
}

.empty-state {
  padding: 46px 24px;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--line);
  background: var(--paper-soft);
  text-align: center;
}

.empty-state i {
  color: var(--brand-accent-deep);
  font-size: 40px;
  margin-bottom: 16px;
}

.empty-state h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 21px;
}

.empty-state p {
  color: var(--body);
  line-height: 1.75;
}

.qa-list {
  display: grid;
  gap: 14px;
}

.qa-card,
.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.qa-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
}

.qa-card p {
  color: var(--body);
  line-height: 1.78;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  color: inherit;
  text-decoration: none;
}

.contact-card:hover .contact-icon {
  color: #17210f;
  background: var(--brand-accent);
}

.contact-icon {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.contact-text h3 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
}

.contact-text p {
  color: var(--body);
  line-height: 1.55;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.note-box {
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  color: var(--brand-primary);
  background: #fffbeb;
  border: 1px solid rgba(242, 182, 0, .32);
  font-weight: 800;
  line-height: 1.7;
}

.parent-calendar-panel .pane-head {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(255, 206, 0, .2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 249, 247, .96));
}

.parent-calendar-panel .pane-head::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -1px;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-accent);
}

.calendar-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, .92fr);
  gap: 16px;
  margin-bottom: 18px;
}

.calendar-next-card,
.calendar-source-card,
.family-tool-card,
.calendar-event {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.calendar-next-card {
  min-height: 178px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 78, 59, .94), rgba(12, 92, 70, .86)),
    var(--brand-primary);
  overflow: hidden;
  position: relative;
}

.calendar-next-card::before {
  content: "";
  position: absolute;
  inset: -34% -18% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 206, 0, .18);
}

.mini-label {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: auto;
  padding: 5px 10px;
  border-radius: 999px;
  color: #17210f;
  background: var(--brand-accent);
  font-size: 12px;
  font-weight: 900;
}

.next-date {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  color: rgba(255, 255, 255, .76);
  font-weight: 900;
}

.calendar-next-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: #fff;
  font-size: 25px;
  line-height: 1.35;
}

.calendar-next-card p {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.72;
  font-weight: 800;
}

.calendar-source-card {
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(180deg, #fff, var(--paper-soft));
}

.calendar-source-card i {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--brand-primary);
  background: var(--mist);
}

.calendar-source-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 17px;
}

.calendar-source-card span {
  display: block;
  color: var(--body);
  line-height: 1.7;
  font-weight: 700;
}

.family-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 28px;
}

.family-tool-card {
  min-height: 148px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}

.family-tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 78, 59, .34);
  box-shadow: var(--shadow-md);
}

.family-tool-card i {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #17210f;
  background: var(--brand-accent);
}

.family-tool-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
}

.family-tool-card span {
  display: block;
  color: var(--body);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.calendar-list-head {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
}

.calendar-list-head h3 {
  color: var(--ink);
  font-size: 23px;
}

.calendar-list-head p {
  margin-top: 7px;
  color: var(--body);
  line-height: 1.7;
  font-weight: 700;
}

.calendar-list-head > span {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--brand-primary);
  background: var(--mist);
  font-weight: 900;
}

.calendar-command {
  margin: 0 0 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(6, 78, 59, .12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(245, 250, 248, .92));
  box-shadow: var(--shadow-sm);
}

.calendar-command h3 {
  margin-top: 5px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.calendar-command p {
  margin-top: 5px;
  color: var(--body);
  font-weight: 750;
  line-height: 1.6;
}

.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.calendar-filter,
.calendar-controls select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s var(--ease-out), border-color .22s var(--ease-out), background .22s var(--ease-out);
}

.calendar-filter {
  padding: 0 15px;
}

.calendar-controls select {
  padding: 0 34px 0 14px;
  outline: none;
}

.calendar-filter:hover,
.calendar-controls select:hover,
.calendar-controls select:focus {
  border-color: rgba(6, 78, 59, .36);
  background: var(--mist);
}

.calendar-filter.active {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 12px 22px rgba(6, 78, 59, .16);
}

.calendar-controls select:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.calendar-event-list {
  display: grid;
  gap: 22px;
}

.calendar-year-group {
  display: grid;
  gap: 12px;
}

.calendar-year-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 2px 2px 0;
}

.calendar-year-head span {
  color: var(--brand-primary);
  font-size: 25px;
  font-weight: 900;
}

.calendar-year-head small {
  padding: 5px 11px;
  border-radius: 999px;
  color: #17210f;
  background: rgba(255, 206, 0, .62);
  font-weight: 900;
}

.calendar-year-events {
  display: grid;
  gap: 12px;
}

.calendar-event {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}

.calendar-event:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 78, 59, .28);
  box-shadow: var(--shadow-md);
}

.calendar-date {
  min-height: 76px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  background: var(--mist);
  font-weight: 900;
}

.calendar-date strong {
  font-size: 27px;
  line-height: 1;
}

.calendar-date span {
  margin-top: 6px;
  font-size: 12px;
}

.calendar-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 7px;
}

.calendar-event-meta span,
.calendar-event-tag {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 900;
}

.calendar-event h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.calendar-event p {
  margin-top: 7px;
  color: var(--body);
  line-height: 1.7;
  font-weight: 700;
}

.calendar-event-tag {
  align-self: start;
  color: #17210f;
  background: rgba(255, 206, 0, .58);
  white-space: nowrap;
}

.calendar-event-official .calendar-date {
  color: #7c2d12;
  background: #fff7ed;
}

.calendar-event-makeup .calendar-date {
  color: #365314;
  background: #f7fee7;
}

.source-note {
  margin-top: 18px;
  padding: 16px 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-radius: var(--radius-md);
  color: var(--body);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  font-weight: 800;
  line-height: 1.7;
}

.source-note i {
  margin-top: 4px;
  color: var(--brand-primary);
}

.registration-panel {
  border-color: rgba(6, 78, 59, .18);
}

.registration-panel .pane-head {
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(6, 78, 59, .98), rgba(10, 106, 79, .92)),
    var(--brand-primary);
}

.registration-panel .pane-head h2 {
  color: #fff;
}

.registration-panel .pane-head p {
  color: rgba(255, 255, 255, .84);
}

.registration-panel .badge {
  color: #17210f;
  background: var(--brand-accent);
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.registration-copy h3 {
  max-width: 600px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.45;
}

.registration-copy p {
  max-width: 680px;
  margin-top: 12px;
  color: var(--body);
  font-weight: 700;
  line-height: 1.85;
}

.registration-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.registration-button {
  min-width: 210px;
}

.site-footer {
  margin-top: auto;
  padding: 76px 56px 38px;
  background: var(--footer);
  color: #cbd5e1;
}

.footer-content {
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 38px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid #334155;
}

.footer-info h3 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 23px;
}

.footer-info p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #1e293b;
  text-decoration: none;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: #0f172a;
  background: var(--brand-accent-deep);
}

.footer-bottom {
  padding-top: 34px;
  color: #64748b;
  text-align: center;
  font-size: 14px;
}

.footer-bottom a {
  color: #64748b;
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 14px 24px;
  }

  .site-nav > ul {
    gap: 22px;
  }

  .principle-grid,
  .flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-hero .hero-copy h1 {
    font-size: 3.05rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: none;
  }

  .logo svg {
    width: 210px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    width: 100%;
    min-height: 100%;
    padding: 86px 28px 34px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .3s var(--ease-out), visibility .3s;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > ul {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .site-nav > ul > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > ul > li:last-child {
    border-bottom: 0;
  }

  .site-nav > ul > li > a {
    display: flex;
    width: 100%;
    padding: 16px 4px;
    font-size: 18px;
  }

  .site-nav > ul > li > a::after,
  .dropdown::before {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: flex;
    transform: none;
    min-width: 0;
    margin: 4px 0 12px;
    padding: 7px 0;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--mist);
    box-shadow: none;
  }

  .dropdown-menu a {
    text-align: left;
    padding: 11px 16px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 14px;
  }

  .page-hero-inner,
  .story-grid,
  .info-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 34px 28px;
  }

  .hero-panel {
    min-height: 320px;
  }

  .info-hero {
    padding-top: 46px;
  }

  .info-hero .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .info-hero .hero-copy {
    min-height: auto;
    padding: 38px 30px;
  }

  .info-hero-panel {
    min-height: auto;
    transform: none;
  }

  .info-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .info-sidebar h2 {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .info-tab {
    margin-bottom: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

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

  .registration-actions {
    justify-content: flex-start;
  }

  .calendar-overview,
  .family-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 38px 16px 24px;
  }

  .section {
    padding: 52px 16px;
  }

  .hero-copy {
    border-radius: 22px;
    padding: 30px 22px;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
  }

  .info-hero .hero-copy h1 {
    font-size: 2.28rem;
  }

  .info-hero .hero-copy p {
    font-size: 15px;
  }

  .info-hero .hero-actions .btn {
    width: 100%;
  }

  .info-hero-panel {
    padding: 18px;
  }

  .info-hero-screen {
    min-height: 200px;
    padding: 24px;
  }

  .info-hero-screen h2 {
    font-size: 23px;
  }

  .info-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .info-quick-card {
    min-height: 112px;
    padding: 14px;
  }

  .info-quick-card strong {
    font-size: 16px;
  }

  .hero-panel-meta,
  .principle-grid,
  .flow,
  .contact-grid,
  .calendar-overview,
  .family-tool-grid,
  .info-sidebar {
    grid-template-columns: 1fr;
  }

  .surface-card,
  .pane-head,
  .pane-body,
  .cta-band {
    padding: 24px;
  }

  .news-item {
    grid-template-columns: 1fr;
  }

  .date-box {
    min-height: auto;
    padding: 12px 16px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 9px;
  }

  .date-box strong {
    font-size: 23px;
  }

  .date-box span {
    margin-top: 0;
  }

  .site-footer {
    padding: 56px 24px 30px;
  }

  .calendar-list-head {
    display: block;
  }

  .calendar-command {
    display: block;
  }

  .calendar-controls {
    margin-top: 14px;
    justify-content: flex-start;
  }

  .calendar-list-head > span {
    margin-top: 12px;
    display: inline-flex;
  }

  .calendar-event {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .calendar-date {
    min-height: auto;
    padding: 12px 16px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 9px;
  }

  .calendar-date strong {
    font-size: 23px;
  }

  .calendar-date span {
    margin-top: 0;
  }

  .calendar-event-tag {
    justify-self: flex-start;
  }

  .registration-actions .btn {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-info p {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .info-quick-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
