/* Rabiyuk public — lightweight foundation (Fase 1) */
:root {
  --jgreen: #5d3a1a;
  --jgreen-soft: #5c3d2e;
  --jgold: #d4af37;
  --jgold-hover: #c59b27;
  --jivory: #f9f8f6;
  --jcharcoal: #1a1a1a;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-900: #1c1917;
  --font-sans: "Urbanist", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --header-h: 4rem;
  --radius: 10px;
  --shadow-mega: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--jcharcoal);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only:focus {
  position: fixed;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  background: var(--jgreen-soft);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}

/* ——— Header (mirror Next Header.js) ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-100);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 0 1.25rem;
  font-family: var(--font-sans);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05);
  border-bottom-color: rgb(229 231 235 / 0.8);
}
@media (min-width: 640px) {
  .site-header { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .site-header { padding: 0 2rem; }
}

/* Desktop 3-col grid (xl+) */
.hdr-desktop {
  display: none;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
}
@media (min-width: 1280px) {
  .hdr-desktop { display: grid; }
  .hdr-mobile { display: none !important; }
}

.hdr-nav-left {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--stone-600);
  letter-spacing: 0.02em;
  justify-self: start;
}
.hdr-link {
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.hdr-link:hover { color: var(--stone-900); }

.hdr-logo-center {
  display: flex;
  justify-content: center;
}
.hdr-logo-img {
  height: 2rem;
  width: auto;
  transition: transform 0.2s;
}
.hdr-logo-center a:hover .hdr-logo-img {
  transform: scale(1.02);
}

.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}
.hdr-login-btn {
  border: 1px solid #292524;
  color: var(--stone-900);
  border-radius: 999px;
  padding: 0 1.5rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  background: #fff;
}
.hdr-login-btn:hover { background: var(--stone-50); }

/* Dropdown */
.hdr-dd {
  position: relative;
  padding: 0.5rem 0;
}
.hdr-dd__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font: inherit;
  font-weight: 600;
  font-size: 13.5px;
  color: inherit;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.hdr-dd:hover .hdr-dd__trigger,
.hdr-dd.is-open .hdr-dd__trigger {
  color: var(--stone-900);
}
.hdr-chev {
  width: 14px;
  height: 14px;
  color: var(--stone-400);
  transition: transform 0.2s, color 0.2s;
}
.hdr-dd:hover .hdr-chev,
.hdr-dd.is-open .hdr-chev {
  transform: rotate(180deg);
  color: var(--stone-900);
}

/* Mega menus */
.hdr-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  padding-top: 0;
}
.hdr-dd:hover .hdr-mega,
.hdr-dd.is-open .hdr-mega {
  display: block;
}
.hdr-mega--advice {
  left: -180px;
}
@media (min-width: 1280px) {
  .hdr-mega--advice { left: 0; }
}
.hdr-mega__panel {
  background: #fcfbfa;
  border: 1px solid #e8e4dc;
  border-radius: 10px;
  box-shadow: var(--shadow-mega);
  padding: 2rem;
  width: min(900px, calc(100vw - 32px));
  animation: hdr-fade-in 0.25s ease-out;
}
.hdr-mega__panel--12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}
@keyframes hdr-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.hdr-mega__col--4 { grid-column: span 4; }
.hdr-mega__col--8 { grid-column: span 8; }
.hdr-mega__col--border {
  border-right: 1px solid rgb(232 228 220 / 0.7);
  padding-right: 1.5rem;
}
.hdr-mega__col--pad {
  padding-left: 0.5rem;
}
.hdr-mega__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c3d2e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hdr-mega__label::before {
  content: "";
  width: 4px;
  height: 12px;
  background: #5c3d2e;
  border-radius: 99px;
  flex-shrink: 0;
}
.hdr-mega__cats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hdr-mega__cat {
  display: flex;
  gap: 0.875rem;
  padding: 0.75rem;
  margin: 0 -0.75rem;
  border-radius: 10px;
  transition: background 0.2s;
}
.hdr-mega__cat--link:hover {
  background: #f5f1ea;
}
.hdr-mega__cat-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--stone-700);
  transition: background 0.3s, color 0.3s;
}
.hdr-mega__cat--link:hover .hdr-mega__cat-icon {
  color: #5c3d2e;
  background: rgb(92 61 46 / 0.1);
}
.hdr-mega__cat-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #292524;
  transition: color 0.2s;
}
.hdr-mega__cat--link:hover .hdr-mega__cat-title {
  color: #5c3d2e;
}
.hdr-mega__cat-desc {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--stone-500);
  line-height: 1.45;
  margin-top: 0.2rem;
}

/* Template grid (plan mega) */
.hdr-tpl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hdr-tpl {
  display: block;
  text-align: center;
  transition: transform 0.3s;
}
.hdr-tpl:hover { transform: translateY(-2px); }
.hdr-tpl__img {
  height: 8rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e4dc;
  background: #fcfbfa;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
  transition: box-shadow 0.3s;
}
.hdr-tpl:hover .hdr-tpl__img {
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
}
.hdr-tpl__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.hdr-tpl:hover .hdr-tpl__img img {
  transform: scale(1.05);
}
.hdr-tpl span {
  display: block;
  margin-top: 0.5rem;
  font-size: 13px;
  font-weight: 700;
  color: #44403c;
  transition: color 0.2s;
}
.hdr-tpl:hover span { color: #5c3d2e; }

/* Tools list */
.hdr-tools-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hdr-tool {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #44403c;
  transition: background 0.2s, color 0.2s;
}
.hdr-tool:hover {
  background: #f5f1ea;
  color: #5c3d2e;
}
.hdr-tool__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.hdr-tool:hover .hdr-tool__icon {
  background: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
}

/* Popular layanan cards */
.hdr-pop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.hdr-pop {
  display: block;
  text-align: center;
  transition: transform 0.3s;
}
.hdr-pop:hover { transform: translateY(-2px); }
.hdr-pop__img {
  height: 6rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e4dc;
  background: #fcfbfa;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}
.hdr-pop__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.hdr-pop:hover .hdr-pop__img img {
  transform: scale(1.05);
}
.hdr-pop span {
  display: block;
  margin-top: 0.35rem;
  font-size: 11px;
  font-weight: 700;
  color: #44403c;
  transition: color 0.2s;
}
.hdr-pop:hover span { color: #5c3d2e; }

/* Mobile bar */
.hdr-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  position: relative;
}
.hdr-burger {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 7px;
  border: 1px solid var(--stone-200);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-600);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
  cursor: pointer;
}
.hdr-burger:hover { color: var(--stone-900); }
.hdr-mobile-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hdr-mobile-logo img {
  height: 1.625rem;
  width: auto;
}
.hdr-mobile-user {
  color: var(--stone-700);
  padding: 0.25rem;
  display: flex;
  align-items: center;
}
.hdr-mobile-user:hover { color: var(--stone-900); }

/* Mobile panel (dropdown under header, not full-screen fixed) */
.hdr-mobile-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  border-bottom: 1px solid var(--stone-100);
  box-shadow: 0 20px 40px -12px rgb(0 0 0 / 0.15);
  padding: 1.5rem;
  z-index: 50;
  animation: hdr-fade-in 0.25s ease-out;
}
.hdr-mobile-panel.is-open,
.hdr-mobile-panel:not([hidden]) {
  display: block;
}
body.nav-open { overflow: hidden; }

.hdr-m-acc {
  border-bottom: 1px solid var(--stone-100);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}
.hdr-m-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone-500);
  padding: 0.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.hdr-m-chev {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.hdr-m-acc.is-open .hdr-m-chev {
  transform: rotate(180deg);
}
.hdr-m-acc__body {
  display: none;
  padding-top: 0.35rem;
}
.hdr-m-acc.is-open .hdr-m-acc__body,
.hdr-m-acc__body:not([hidden]) {
  display: block;
}
.hdr-m-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.hdr-m-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem;
  background: var(--stone-50);
  border-radius: 0.5rem;
  font-size: 12px;
  font-weight: 700;
  color: #4a4a4a;
}
.hdr-m-chip:hover { color: #d4af37; }
.hdr-m-tpls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
@media (min-width: 640px) {
  .hdr-m-tpls { grid-template-columns: 1fr 1fr 1fr; }
}
.hdr-m-tpls .hdr-tpl__img { height: 5rem; }
.hdr-m-tpls .hdr-tpl span { font-size: 11px; }
.hdr-m-link {
  display: block;
  padding: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  color: #4a4a4a;
  border-radius: 0.5rem;
}
.hdr-m-link:hover { background: rgb(212 175 55 / 0.1); }
.hdr-m-footer {
  border-top: 1px solid var(--stone-100);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  color: #4a4a4a;
}
.hdr-m-footer a:hover { color: #d4af37; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--stone-900);
  color: #fff;
  border-radius: 999px;
  padding: 0 1.75rem;
  height: 2.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-primary:hover { background: #292524; }

/* ——— Main ——— */
.site-main {
  position: relative;
  z-index: 1;
  min-height: 50vh;
  padding-top: var(--header-h);
  /* transparent so sticky hero can show at sides of services card */
  background: transparent;
  overflow: visible;
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  z-index: 20;
  width: 100%;
  background: #f8f8f8;
  border-top: 1px solid var(--stone-200);
  padding: 4rem 1.5rem;
  color: var(--stone-700);
}
@media (min-width: 640px) {
  .site-footer {
    padding: 4rem 3rem;
  }
}
@media (min-width: 1024px) {
  .site-footer {
    padding: 4rem 4rem;
  }
}

.footer-grid {
  width: 100%; max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
  }
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
  .footer-col--brand {
    grid-column: auto;
    padding-left: 1.5rem;
    border-left: 1px solid rgb(231 229 228 / 0.6);
  }
}
.footer-col,
.footer-col-about,
.footer-col-support,
.footer-col-brand {
  min-width: 0;
}
.footer-cta {
  padding-top: 0.75rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--stone-900);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.25rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--stone-500);
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  margin-right: 0;
  transform: translateX(-4px);
  transition: max-width 0.22s ease, opacity 0.22s ease, margin-right 0.22s ease, transform 0.22s ease;
  background: no-repeat center / 14px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c1917' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
}
.footer-links a:hover {
  color: var(--stone-900);
}
.footer-links a:hover::before {
  max-width: 1em;
  opacity: 1;
  margin-right: 0.35rem;
  transform: translateX(0);
}

.footer-tagline {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--stone-500);
  font-style: italic;
  margin: 0.65rem 0 0;
}

.footer-utils {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.footer-utils a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--stone-900);
}
.footer-utils a:hover {
  color: var(--stone-700);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.footer-social a,
.footer-social__icon {
  color: var(--stone-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  line-height: 0;
}
.footer-social a:hover,
.footer-social__icon:hover {
  color: var(--stone-900);
}
.footer-social__icon svg {
  display: block;
}

.footer-bottom {
  border-top: 1px solid var(--stone-200);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--stone-500);
}
.footer-copy,
p.footer-copy {
  font-weight: 600 !important;
}
.footer-legal a:hover,
.footer-privacy-choices:hover {
  color: var(--stone-900);
}
.footer-privacy-choices {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: var(--stone-600);
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
}

/* ——— Consent (CMP lightweight) ——— */
.rbk-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 1rem;
  background: transparent;
}
.rbk-consent-banner[hidden] {
  display: none !important;
}
.rbk-consent__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--stone-200);
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgb(0 0 0 / 0.12);
}
@media (min-width: 768px) {
  .rbk-consent__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
  }
}
.rbk-consent__title {
  margin: 0 0 0.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--stone-900);
}
.rbk-consent__desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--stone-600);
  font-weight: 500;
}
.rbk-consent__desc a {
  color: var(--stone-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rbk-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}
.rbk-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: inherit;
}
.rbk-consent__btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--stone-600);
}
.rbk-consent__btn--ghost:hover {
  background: var(--stone-100);
  color: var(--stone-900);
}
.rbk-consent__btn--line {
  background: #fff;
  border-color: var(--stone-200);
  color: var(--stone-900);
}
.rbk-consent__btn--line:hover {
  border-color: #a8a29e;
}
.rbk-consent__btn--solid {
  background: var(--stone-900);
  color: #fff;
  border-color: var(--stone-900);
}
.rbk-consent__btn--solid:hover {
  background: #000;
}

.rbk-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.rbk-consent-modal[hidden] {
  display: none !important;
}
.rbk-consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.45);
}
.rbk-consent-modal__panel {
  position: relative;
  width: 100%;
  max-width: 28rem;
  max-height: min(90vh, 36rem);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 0.85rem;
  padding: 1.5rem;
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.18);
}
.rbk-consent-modal__close {
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--stone-500);
  border: 1px solid transparent;
  background: transparent;
}
.rbk-consent-modal__close:hover {
  background: var(--stone-100);
  color: var(--stone-900);
}
.rbk-consent-modal h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
}
.rbk-consent-modal__lead {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--stone-600);
}
.rbk-consent__toggles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}
.rbk-consent__toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--stone-200);
  border-radius: 0.6rem;
  font-size: 0.88rem;
  background: #fff;
}
.rbk-consent__toggle small {
  font-size: 0.78rem;
  color: var(--stone-500);
  font-weight: 500;
}
.rbk-consent__toggle input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--stone-900);
}
.rbk-consent__toggle.is-disabled {
  opacity: 0.7;
  background: var(--stone-50);
}
.rbk-consent-modal__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}
.rbk-consent__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--stone-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rbk-consent__foot-actions {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}
.footer-copy {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--stone-600);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-copy {
    text-align: right;
  }
}

/* ——— Demo page ——— */
.demo-hero {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}
.demo-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--jgreen);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.demo-hero p {
  color: var(--stone-600);
  font-size: 1.05rem;
}
.demo-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jgold);
  border: 1px solid rgb(212 175 55 / 0.35);
  background: rgb(212 175 55 / 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.demo-card {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--jivory);
  border: 1px solid #e8e4dc;
  border-radius: 1rem;
}
.demo-card h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--jgreen);
  margin: 0 0 0.5rem;
}
.demo-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--stone-600);
}
.demo-card li {
  margin-bottom: 0.35rem;
}

/* Critical hero brown fallback - prevents flash, CLS 0 */
.hp-hero__media, .hp-hero__video {
  background: #2e1f18 !important;
}
.hp-hero, .hp-hero__shade {
  contain: layout;
}
