@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,400;0,600;0,700;1,400&family=Mulish:wght@400;500;600;700&display=swap');

:root {
  --cx-cream: #FFFBEB;
  --cx-cream-2: #FFFDF5;
  --cx-ink: #1C1917;
  --cx-ink-soft: #44403C;
  --cx-teal: #0F766E;
  --cx-teal-deep: #0B5650;
  --cx-amber: #B45309;
  --cx-border: #ECE4D3;
  --cx-muted: #F5EEDD;
  --cx-shadow: 0 12px 30px rgba(28, 25, 23, 0.08);
  --cx-shadow-soft: 0 4px 14px rgba(28, 25, 23, 0.06);
  --cx-radius: 14px;
  --cx-radius-sm: 9px;
  --cx-maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cx-ink-soft);
  background-color: var(--cx-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bitter', Georgia, 'Times New Roman', serif;
  color: var(--cx-ink);
  line-height: 1.25;
  margin: 0 0 .5em;
  font-weight: 700;
}

h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 3.4vw, 2.05rem); }
h3 { font-size: clamp(1.12rem, 2.2vw, 1.35rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.05em; }

a { color: var(--cx-teal); text-decoration: none; }
a:hover { color: var(--cx-teal-deep); text-decoration: underline; }

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

.cx-wrap {
  width: 100%;
  max-width: var(--cx-maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.cx-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.cx-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cx-teal);
  color: #fff;
  padding: 10px 16px;
  z-index: 1200;
  border-radius: 0 0 var(--cx-radius-sm) 0;
}
.cx-skip:focus { left: 0; color: #fff; }

.cx-header {
  background: var(--cx-cream-2);
  border-bottom: 1px solid var(--cx-border);
  position: sticky;
  top: 0;
  z-index: 900;
}

.cx-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: .82rem;
  color: var(--cx-ink-soft);
  border-bottom: 1px solid var(--cx-border);
  padding: 7px 0;
}
.cx-topbar .cx-locate {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .02em;
}
.cx-topbar .cx-icon { width: 15px; height: 15px; color: var(--cx-teal); }
.cx-topbar a { color: var(--cx-ink-soft); font-weight: 600; }
.cx-topbar .cx-topbar-date { color: var(--cx-amber); font-weight: 600; }

.cx-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 0;
}

.cx-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-right: auto;
  text-decoration: none;
}
.cx-brand:hover { text-decoration: none; }
.cx-brand strong {
  font-family: 'Bitter', serif;
  font-size: 1.22rem;
  color: var(--cx-ink);
  letter-spacing: -.01em;
}
.cx-brand span {
  font-size: .76rem;
  color: var(--cx-teal);
  font-weight: 600;
  letter-spacing: .01em;
}

.cx-burger {
  display: none;
  border: 1px solid var(--cx-border);
  background: var(--cx-muted);
  color: var(--cx-ink);
  border-radius: var(--cx-radius-sm);
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cx-burger .cx-icon { width: 24px; height: 24px; }

.cx-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cx-nav-list a {
  display: inline-block;
  padding: 9px 13px;
  border-radius: var(--cx-radius-sm);
  color: var(--cx-ink-soft);
  font-weight: 600;
  font-size: .94rem;
}
.cx-nav-list a:hover {
  background: var(--cx-muted);
  color: var(--cx-teal-deep);
  text-decoration: none;
}

.cx-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cx-teal);
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
}
.cx-nav-cta:hover { background: var(--cx-teal-deep); color: #fff; text-decoration: none; }
.cx-nav-cta .cx-icon { width: 18px; height: 18px; }

.cx-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .96rem;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Mulish', sans-serif;
  transition: transform .15s ease, background .15s ease;
}
.cx-btn:hover { text-decoration: none; transform: translateY(-1px); }
.cx-btn-primary { background: var(--cx-teal); color: #fff; }
.cx-btn-primary:hover { background: var(--cx-teal-deep); color: #fff; }
.cx-btn-ghost {
  background: transparent;
  color: var(--cx-ink);
  border-color: var(--cx-border);
}
.cx-btn-ghost:hover { background: var(--cx-muted); color: var(--cx-ink); }
.cx-btn .cx-icon { width: 19px; height: 19px; }

.cx-hero {
  position: relative;
  background-image: linear-gradient(rgba(28,25,23,.62), rgba(11,86,80,.66)), url('../img/catatan-hero-pasar.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 64px 0;
}
.cx-hero-inner { max-width: 720px; }
.cx-hero .cx-eyebrow { color: #FDE9C8; }
.cx-hero h1 { color: #fff; margin-bottom: .35em; }
.cx-hero-sub {
  font-size: 1.12rem;
  color: #F4EFE3;
  margin-bottom: 1.6em;
  max-width: 600px;
}
.cx-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.cx-milestone-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.cx-milestone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,251,235,.12);
  border: 1px solid rgba(255,251,235,.25);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
}
.cx-milestone .cx-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FACC15; flex: none;
}

.cx-section { padding: 64px 0; }
.cx-section-tight { padding: 48px 0; }
.cx-alt { background: var(--cx-cream-2); border-top: 1px solid var(--cx-border); border-bottom: 1px solid var(--cx-border); }
.cx-muted-band { background: var(--cx-muted); }

.cx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cx-teal);
  margin-bottom: 14px;
}
.cx-eyebrow .cx-line { width: 26px; height: 2px; background: var(--cx-amber); display: inline-block; }

.cx-lead { font-size: 1.12rem; color: var(--cx-ink-soft); max-width: 740px; }
.cx-section-intro { font-size: 1.08rem; max-width: 720px; margin-bottom: 30px; }

.cx-about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}
.cx-about-media img {
  border-radius: var(--cx-radius);
  box-shadow: var(--cx-shadow);
  border: 1px solid var(--cx-border);
}
.cx-checklist { list-style: none; margin: 18px 0 0; padding: 0; }
.cx-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 12px;
  font-weight: 500;
}
.cx-checklist .cx-icon { color: var(--cx-teal); margin-top: 3px; }

.cx-timeline { position: relative; margin-top: 18px; }
.cx-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(var(--cx-teal), var(--cx-amber));
  border-radius: 3px;
}
.cx-node {
  position: relative;
  padding-left: 58px;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.cx-node.is-in { opacity: 1; transform: translateY(0); }
.cx-node::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 26px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--cx-cream-2);
  border: 4px solid var(--cx-teal);
  box-shadow: 0 0 0 4px var(--cx-cream);
  z-index: 1;
}
.cx-node:nth-child(even)::before { border-color: var(--cx-amber); }

.cx-node-card {
  background: var(--cx-cream-2);
  border: 1px solid var(--cx-border);
  border-radius: var(--cx-radius);
  overflow: hidden;
  box-shadow: var(--cx-shadow-soft);
  display: grid;
  grid-template-columns: 168px 1fr;
}
.cx-node-card:hover { box-shadow: var(--cx-shadow); }
.cx-node-thumb { overflow: hidden; background: var(--cx-muted); }
.cx-node-thumb img { width: 100%; height: 100%; object-fit: cover; min-height: 150px; }
.cx-node-body { padding: 20px 22px; }
.cx-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cx-muted);
  color: var(--cx-amber);
  border: 1px solid var(--cx-border);
  padding: 4px 11px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 11px;
}
.cx-date-badge .cx-icon { width: 14px; height: 14px; }
.cx-node-body h3 { margin-bottom: .35em; }
.cx-node-body h3 a { color: var(--cx-ink); }
.cx-node-body h3 a:hover { color: var(--cx-teal); text-decoration: none; }
.cx-node-body p { margin-bottom: .9em; font-size: .98rem; }
.cx-readlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--cx-teal);
}
.cx-readlink .cx-icon { width: 17px; height: 17px; }
.cx-readlink:hover { color: var(--cx-teal-deep); text-decoration: none; }

.cx-calnote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.cx-calnote-card {
  background: var(--cx-cream-2);
  border: 1px solid var(--cx-border);
  border-left: 4px solid var(--cx-teal);
  border-radius: var(--cx-radius);
  padding: 24px 26px;
  box-shadow: var(--cx-shadow-soft);
}
.cx-note-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FEF3E2;
  color: var(--cx-amber);
  border: 1px solid #F3D9B4;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  margin-top: 14px;
}
.cx-note-chip .cx-icon { width: 15px; height: 15px; }
.cx-cal-list { list-style: none; margin: 0; padding: 0; }
.cx-cal-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cx-border);
}
.cx-cal-list li:last-child { border-bottom: 0; }
.cx-cal-step {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cx-teal);
  color: #fff;
  font-family: 'Bitter', serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cx-cal-list strong { color: var(--cx-ink); display: block; font-family: 'Bitter', serif; }

.cx-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 20px;
  margin-top: 14px;
}
.cx-pillar {
  background: var(--cx-cream-2);
  border: 1px solid var(--cx-border);
  border-radius: var(--cx-radius);
  padding: 24px;
  box-shadow: var(--cx-shadow-soft);
}
.cx-pillar-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cx-muted);
  color: var(--cx-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.cx-pillar-ico .cx-icon { width: 24px; height: 24px; }
.cx-pillar h3 { font-size: 1.12rem; }
.cx-pillar p { font-size: .96rem; margin-bottom: 0; }

.cx-mission-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.cx-mission-media img {
  border-radius: var(--cx-radius);
  box-shadow: var(--cx-shadow);
  border: 1px solid var(--cx-border);
}

.cx-cta-band { text-align: center; }
.cx-cta-band .cx-eyebrow { justify-content: center; }
.cx-cta-band h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.cx-cta-band p { max-width: 640px; margin-left: auto; margin-right: auto; }
.cx-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 22px; }

.cx-page-head {
  background: var(--cx-muted);
  border-bottom: 1px solid var(--cx-border);
  padding: 40px 0 36px;
}
.cx-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--cx-ink-soft);
  margin-bottom: 14px;
  font-weight: 600;
}
.cx-crumb a { color: var(--cx-teal); }
.cx-crumb .cx-sep { color: var(--cx-amber); }
.cx-page-head h1 { margin-bottom: .3em; }
.cx-page-head p { max-width: 720px; margin-bottom: 0; }

.cx-prose { max-width: 760px; }
.cx-prose h2 { margin-top: 1.8em; }
.cx-prose h3 { margin-top: 1.5em; }
.cx-prose ul, .cx-prose ol { padding-left: 22px; margin: 0 0 1.1em; }
.cx-prose li { margin-bottom: .5em; }
.cx-prose .cx-callout {
  background: var(--cx-muted);
  border-left: 4px solid var(--cx-amber);
  border-radius: 0 var(--cx-radius-sm) var(--cx-radius-sm) 0;
  padding: 16px 20px;
  margin: 1.4em 0;
}
.cx-prose .cx-callout p { margin-bottom: 0; font-size: .98rem; }

.cx-article-hero img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--cx-radius);
  border: 1px solid var(--cx-border);
  box-shadow: var(--cx-shadow-soft);
  margin-bottom: 8px;
}
.cx-byline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  color: var(--cx-ink-soft);
  font-weight: 600;
  margin-bottom: 6px;
}
.cx-byline .cx-icon { width: 16px; height: 16px; color: var(--cx-teal); }

.cx-prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--cx-border);
}
.cx-pn {
  background: var(--cx-cream-2);
  border: 1px solid var(--cx-border);
  border-radius: var(--cx-radius);
  padding: 16px 20px;
}
.cx-pn span {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cx-amber);
  font-weight: 700;
}
.cx-pn a { font-family: 'Bitter', serif; font-weight: 600; color: var(--cx-ink); }
.cx-pn a:hover { color: var(--cx-teal); text-decoration: none; }
.cx-pn.cx-pn-next { text-align: right; }

.cx-contact-map { width: 100%; }
.cx-map {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}
.cx-map iframe { width: 100%; height: 100%; border: 0; }
.cx-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-top: 14px;
}
.cx-map-link .cx-icon { width: 17px; height: 17px; }

.cx-contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.cx-contact-info-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cx-border);
}
.cx-contact-info-item:last-child { border-bottom: 0; }
.cx-contact-ico {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--cx-muted);
  color: var(--cx-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cx-contact-info-item h3 { font-size: 1rem; margin-bottom: .2em; }
.cx-contact-info-item p { margin-bottom: 0; font-size: .96rem; }

.cx-form { background: var(--cx-cream-2); border: 1px solid var(--cx-border); border-radius: var(--cx-radius); padding: 26px; box-shadow: var(--cx-shadow-soft); }
.cx-field { margin-bottom: 16px; }
.cx-field label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--cx-ink);
  margin-bottom: 6px;
}
.cx-field input,
.cx-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cx-border);
  border-radius: var(--cx-radius-sm);
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  background: var(--cx-cream);
  color: var(--cx-ink);
}
.cx-field input:focus,
.cx-field textarea:focus {
  outline: none;
  border-color: var(--cx-teal);
  box-shadow: 0 0 0 3px rgba(15,118,110,.12);
}
.cx-field textarea { min-height: 120px; resize: vertical; }

.cx-consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.cx-consent input { margin-top: 4px; width: 18px; height: 18px; flex: none; accent-color: var(--cx-teal); }
.cx-consent label { font-size: .86rem; font-weight: 500; color: var(--cx-ink-soft); }

.cx-footer {
  background: var(--cx-ink);
  color: #D7CFC4;
  padding: 52px 0 26px;
}
.cx-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.cx-footer a { color: #D7CFC4; }
.cx-footer a:hover { color: #fff; }

.cx-news {
  background: #2A2522;
  border: 1px solid #3B342F;
  border-radius: var(--cx-radius);
  padding: 26px 28px;
  margin-bottom: 40px;
}
.cx-news-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px; align-items: center; }
.cx-news h3 { color: #fff; }
.cx-news p { color: #C4BBB0; margin-bottom: 0; font-size: .96rem; }
.cx-news-form .cx-field input { background: #1C1917; border-color: #3B342F; color: #fff; }
.cx-news-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cx-news-row .cx-field { flex: 1; min-width: 180px; margin-bottom: 0; }
.cx-news-consent { display: flex; gap: 9px; align-items: flex-start; margin-top: 12px; }
.cx-news-consent input { margin-top: 3px; width: 17px; height: 17px; flex: none; accent-color: var(--cx-teal); }
.cx-news-consent label { font-size: .82rem; color: #B5ABA0; }
.cx-news-form button { margin-top: 14px; }

.cx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid #3B342F;
}
.cx-footer-brand strong { font-family: 'Bitter', serif; color: #fff; font-size: 1.18rem; display: block; margin-bottom: 8px; }
.cx-footer-brand p { font-size: .9rem; color: #B5ABA0; }
.cx-footer-contact { list-style: none; margin: 14px 0 0; padding: 0; }
.cx-footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; font-size: .88rem; }
.cx-footer-contact .cx-icon { width: 17px; height: 17px; color: #FACC15; margin-top: 2px; }
.cx-footer-col ul { list-style: none; margin: 0; padding: 0; }
.cx-footer-col li { margin-bottom: 10px; font-size: .9rem; }
.cx-link {
  background: none;
  border: 0;
  padding: 0;
  font-family: 'Mulish', sans-serif;
  font-size: .9rem;
  color: #D7CFC4;
  cursor: pointer;
  text-align: left;
}
.cx-link:hover { color: #fff; text-decoration: underline; }
.cx-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding-top: 22px;
  font-size: .82rem;
  color: #9C9389;
}

.cx-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cx-modal.is-open { display: flex; }
.cx-modal-scrim { position: absolute; inset: 0; background: rgba(28,25,23,.55); }
.cx-modal-box {
  position: relative;
  background: var(--cx-cream-2);
  border-radius: var(--cx-radius);
  padding: 34px 30px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.cx-modal-box .cx-icon { width: 46px; height: 46px; color: var(--cx-teal); margin: 0 auto 12px; }
.cx-modal-box h3 { margin-bottom: .3em; }
.cx-modal-box p { margin-bottom: 0; }

.cx-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--cx-cream-2);
  border-top: 1px solid var(--cx-border);
  box-shadow: 0 -8px 30px rgba(28,25,23,.12);
  display: none;
}
.cx-cookie.is-visible { display: block; }
.cx-cookie-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.cx-cookie-bar p { margin: 0; font-size: .88rem; flex: 1; min-width: 260px; }
.cx-cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cx-cookie-btn {
  border: 1px solid var(--cx-border);
  background: var(--cx-cream);
  color: var(--cx-ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  min-height: 44px;
}
.cx-cookie-btn:hover { background: var(--cx-muted); }
.cx-cookie-btn.is-primary { background: var(--cx-teal); color: #fff; border-color: var(--cx-teal); }
.cx-cookie-btn.is-primary:hover { background: var(--cx-teal-deep); }
.cx-cookie-panel { display: none; padding: 8px 0 22px; border-top: 1px solid var(--cx-border); }
.cx-cookie.is-expanded .cx-cookie-panel { display: block; }
.cx-cookie-cols { display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 26px; padding-top: 18px; }
.cx-cookie-cols h3 { font-size: 1.1rem; }
.cx-cookie-cols > div > p { font-size: .88rem; }
.cx-cookie-cat { border: 1px solid var(--cx-border); border-radius: var(--cx-radius-sm); padding: 14px 16px; margin-bottom: 12px; background: var(--cx-cream); }
.cx-cookie-cat-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cx-cookie-cat h4 { margin: 0; }
.cx-cookie-state { font-size: .8rem; color: var(--cx-teal); font-weight: 700; }
.cx-cookie-cat p { font-size: .84rem; margin: 10px 0 0; }
.cx-cookie-detail-btn {
  margin-top: 10px;
  padding: 6px 11px;
  font-size: .78rem;
  min-height: auto;
}
.cx-cookie-save { display: flex; flex-direction: column; gap: 10px; min-width: 170px; }
.cx-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: none; }
.cx-switch input { opacity: 0; width: 0; height: 0; }
.cx-switch span {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #D6CCBC;
  border-radius: 26px;
  transition: .2s;
}
.cx-switch span::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.cx-switch input:checked + span { background: var(--cx-teal); }
.cx-switch input:checked + span::before { transform: translateX(20px); }
.cx-switch input:disabled + span { background: var(--cx-teal); opacity: .55; cursor: not-allowed; }

@media (max-width: 1024px) {
  .cx-cookie-cols { grid-template-columns: 1fr; }
  .cx-cookie-save { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 880px) {
  .cx-burger { display: inline-flex; }
  .cx-nav { flex-wrap: wrap; }
  .cx-nav-list,
  .cx-nav-cta { display: none; flex-basis: 100%; }
  .cx-nav.is-open .cx-nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-top: 10px;
  }
  .cx-nav.is-open .cx-nav-list a { padding: 12px 14px; border-radius: var(--cx-radius-sm); }
  .cx-nav.is-open .cx-nav-cta { display: inline-flex; justify-content: center; margin-top: 8px; }
  .cx-about-grid,
  .cx-mission-band,
  .cx-calnote,
  .cx-contact-grid,
  .cx-news-grid,
  .cx-footer-grid {
    grid-template-columns: 1fr;
  }
  .cx-about-media,
  .cx-mission-media { order: -1; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .cx-section { padding: 46px 0; }
  .cx-hero { min-height: 460px; padding: 50px 0; }
  .cx-node-card { grid-template-columns: 1fr; }
  .cx-node-thumb img { min-height: 180px; max-height: 220px; }
  .cx-prevnext { grid-template-columns: 1fr; }
  .cx-pn.cx-pn-next { text-align: left; }
  .cx-topbar { font-size: .76rem; }
  .cx-topbar .cx-locate span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cx-node { opacity: 1; transform: none; transition: none; }
  .cx-btn:hover { transform: none; }
}
