@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --okl-plum: #3b1a30;
  --okl-plum-dark: #25101e;
  --okl-rose: #b56a86;
  --okl-rose-soft: #e8c3d1;
  --okl-blush: #f7e9ef;
  --okl-cream: #fdf8f4;
  --okl-gold: #c8a259;
  --okl-gold-dark: #a3803b;
  --okl-ink: #21121c;
  --okl-muted: #5a4652;
  --okl-line: rgba(59, 26, 48, 0.12);
  --okl-white: #ffffff;
  --okl-shadow-sm: 0 6px 20px rgba(59, 26, 48, 0.08);
  --okl-shadow-md: 0 18px 48px rgba(59, 26, 48, 0.14);
  --okl-radius-s: 8px;
  --okl-radius-m: 16px;
  --okl-radius-l: 28px;
  --okl-font-serif: 'Cormorant Garamond', Georgia, serif;
  --okl-font-sans: 'Jost', 'Segoe UI', system-ui, sans-serif;
  --okl-transition: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--okl-font-sans);
  font-weight: 400;
  color: var(--okl-ink);
  background-color: var(--okl-cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--okl-font-serif);
  font-weight: 600;
  color: var(--okl-plum);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }

p { color: var(--okl-muted); }

a {
  color: var(--okl-rose);
  text-decoration: none;
  transition: color var(--okl-transition);
}

a:hover { color: var(--okl-plum); }

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

.okl-section {
  position: relative;
  padding: 96px 0;
}

.okl-section--tight { padding: 64px 0; }
.okl-section--dark {
  background-color: var(--okl-plum);
  color: var(--okl-white);
}
.okl-section--dark h1,
.okl-section--dark h2,
.okl-section--dark h3 { color: var(--okl-white); }
.okl-section--dark p { color: rgba(255, 255, 255, 0.85); }

.okl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--okl-gold-dark);
  margin-bottom: 18px;
}

.okl-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--okl-gold);
  display: inline-block;
}

.okl-section--dark .okl-eyebrow { color: var(--okl-gold); }

.okl-lead {
  font-size: 1.12rem;
  max-width: 62ch;
}

.okl-divider {
  width: 68px;
  height: 2px;
  background: var(--okl-gold);
  margin: 24px 0;
}

/* ---------- Buttons ---------- */
.okl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--okl-font-sans);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--okl-transition);
  text-align: center;
}

.okl-btn--primary {
  background: var(--okl-plum);
  color: var(--okl-white);
}

.okl-btn--primary:hover {
  background: var(--okl-rose);
  color: var(--okl-white);
  transform: translateY(-2px);
  box-shadow: var(--okl-shadow-md);
}

.okl-btn--gold {
  background: var(--okl-gold);
  color: var(--okl-plum-dark);
}

.okl-btn--gold:hover {
  background: var(--okl-gold-dark);
  color: var(--okl-white);
  transform: translateY(-2px);
}

.okl-btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--okl-plum);
}

.okl-btn--outline:hover {
  background: var(--okl-plum);
  color: var(--okl-white);
}

.okl-section--dark .okl-btn--outline { color: var(--okl-white); }
.okl-section--dark .okl-btn--outline:hover {
  background: var(--okl-white);
  color: var(--okl-plum);
}

/* ---------- Header ---------- */
.okl-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--okl-line);
  transition: box-shadow var(--okl-transition), padding var(--okl-transition);
}

.okl-header.is-scrolled {
  box-shadow: var(--okl-shadow-sm);
}

.okl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.okl-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--okl-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--okl-plum);
  letter-spacing: 0.01em;
}

.okl-brand span { color: var(--okl-rose); }

.okl-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.okl-nav__link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--okl-ink);
  padding: 6px 0;
}

.okl-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--okl-gold);
  transition: width var(--okl-transition);
}

.okl-nav__link:hover::after,
.okl-nav__link.is-active::after { width: 100%; }

.okl-header__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
  text-align: right;
  color: var(--okl-muted);
  line-height: 1.4;
}

.okl-header__meta i { color: var(--okl-rose); margin-right: 6px; }

.okl-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--okl-line);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  color: var(--okl-plum);
  font-size: 1.25rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.okl-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--okl-white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.okl-hero h1,
.okl-hero h2 { color: var(--okl-white); }

.okl-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.okl-hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
}

.okl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.okl-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.4rem;
  animation: okl-bounce 2.2s infinite;
}

@keyframes okl-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- Cards ---------- */
.okl-card {
  background: var(--okl-white);
  border-radius: var(--okl-radius-m);
  overflow: hidden;
  box-shadow: var(--okl-shadow-sm);
  transition: transform var(--okl-transition), box-shadow var(--okl-transition);
  height: 100%;
  border: 1px solid var(--okl-line);
}

.okl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--okl-shadow-md);
}

.okl-card__media {
  aspect-ratio: 4 / 3;
  background: var(--okl-blush);
  overflow: hidden;
}

.okl-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.okl-card:hover .okl-card__media img { transform: scale(1.05); }

.okl-card__body { padding: 26px; }

.okl-card__title { margin-bottom: 12px; }
.okl-card__title a { color: inherit; }
.okl-card__title a:hover { color: var(--okl-rose); }

.okl-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 500;
  color: var(--okl-rose);
}

.okl-card__link:hover i { transform: translateX(4px); }
.okl-card__link i { transition: transform var(--okl-transition); }

/* ---------- Feature list ---------- */
.okl-feature {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--okl-radius-m);
  background: var(--okl-white);
  border: 1px solid var(--okl-line);
  height: 100%;
}

.okl-feature__icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--okl-blush);
  color: var(--okl-rose);
  font-size: 1.3rem;
}

.okl-feature h3 { font-size: 1.2rem; margin: 0 0 6px; }

/* ---------- Stats ---------- */
.okl-stat { text-align: center; }

.okl-stat__num {
  font-family: var(--okl-font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--okl-gold);
  line-height: 1;
}

.okl-stat__label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin-top: 10px;
}

/* ---------- Gallery ---------- */
.okl-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.okl-gallery__item {
  position: relative;
  border-radius: var(--okl-radius-m);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--okl-blush);
}

.okl-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.okl-gallery__item:hover img { transform: scale(1.06); }

.okl-gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(37, 16, 30, 0.9), rgba(37, 16, 30, 0));
  color: var(--okl-white);
  font-size: 0.9rem;
}

.okl-gallery__caption strong { display: block; font-family: var(--okl-font-serif); font-size: 1.1rem; }

/* ---------- Forms ---------- */
.okl-form { width: 100%; }

.okl-form__control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--okl-radius-s);
  border: 1px solid var(--okl-line);
  background: var(--okl-white);
  color: var(--okl-ink);
  font-family: var(--okl-font-sans);
  font-size: 0.98rem;
  transition: border-color var(--okl-transition), box-shadow var(--okl-transition);
}

.okl-form__control::placeholder { color: #9b8790; }

.okl-form__control:focus {
  outline: none;
  border-color: var(--okl-rose);
  box-shadow: 0 0 0 4px rgba(181, 106, 134, 0.15);
}

.okl-form__control.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12);
}

.okl-form__error {
  display: none;
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 6px;
}

.okl-form__control.is-invalid ~ .okl-form__error { display: block; }

.okl-form__consent { font-size: 0.85rem; }
.okl-form__consent label { color: var(--okl-muted); }

/* ---------- Accordion ---------- */
.okl-acc__item {
  border-bottom: 1px solid var(--okl-line);
}

.okl-acc__head {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-family: var(--okl-font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--okl-plum);
  cursor: pointer;
}

.okl-acc__head i { transition: transform var(--okl-transition); color: var(--okl-rose); }
.okl-acc__item.is-open .okl-acc__head i { transform: rotate(180deg); }

.okl-acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.okl-acc__body-inner { padding: 0 0 24px; color: var(--okl-muted); }

/* ---------- Steps ---------- */
.okl-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px dashed var(--okl-line);
}

.okl-step__num {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--okl-plum);
  color: var(--okl-white);
  font-family: var(--okl-font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.okl-step h3 { font-size: 1.15rem; margin: 0 0 4px; }

/* ---------- Reviews slider ---------- */
.okl-slider {
  position: relative;
  overflow: hidden;
}

.okl-slider__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.okl-slider__slide {
  flex: 0 0 100%;
  padding: 6px;
}

.okl-review {
  background: var(--okl-white);
  border-radius: var(--okl-radius-m);
  padding: 40px 36px;
  box-shadow: var(--okl-shadow-sm);
  border: 1px solid var(--okl-line);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.okl-review__stars { color: var(--okl-gold); margin-bottom: 18px; font-size: 1.05rem; }

.okl-review__text {
  font-family: var(--okl-font-serif);
  font-size: 1.35rem;
  color: var(--okl-plum);
  font-style: italic;
  line-height: 1.5;
}

.okl-review__author { margin-top: 22px; font-weight: 500; color: var(--okl-ink); }
.okl-review__role { font-size: 0.85rem; color: var(--okl-muted); }

.okl-slider__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.okl-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--okl-rose-soft);
  cursor: pointer;
  transition: all var(--okl-transition);
  padding: 0;
}

.okl-slider__dot.is-active {
  background: var(--okl-rose);
  width: 28px;
  border-radius: 999px;
}

/* ---------- Logos / partners ---------- */
.okl-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.okl-partners__item {
  opacity: 0.75;
  transition: opacity var(--okl-transition);
}

.okl-partners__item:hover { opacity: 1; }

/* ---------- Price table ---------- */
.okl-price-card {
  background: var(--okl-white);
  border-radius: var(--okl-radius-l);
  padding: 40px 34px;
  border: 1px solid var(--okl-line);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--okl-transition), box-shadow var(--okl-transition);
}

.okl-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--okl-shadow-md);
}

.okl-price-card--featured {
  background: var(--okl-plum);
  color: var(--okl-white);
  border-color: transparent;
}

.okl-price-card--featured h3,
.okl-price-card--featured .okl-price-card__amount { color: var(--okl-white); }
.okl-price-card--featured p { color: rgba(255, 255, 255, 0.82); }

.okl-price-card__amount {
  font-family: var(--okl-font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--okl-plum);
  line-height: 1;
  margin: 12px 0 20px;
}

.okl-price-card__list { list-style: none; padding: 0; margin: 0 0 28px; }
.okl-price-card__list li { padding: 8px 0; display: flex; gap: 10px; align-items: flex-start; }
.okl-price-card__list i { color: var(--okl-gold); margin-top: 5px; }
.okl-price-card--featured .okl-price-card__list i { color: var(--okl-gold); }
.okl-price-card .okl-btn { margin-top: auto; align-self: center; }

/* ---------- Blog ---------- */
.okl-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--okl-white);
  border-radius: var(--okl-radius-m);
  overflow: hidden;
  border: 1px solid var(--okl-line);
  box-shadow: var(--okl-shadow-sm);
  transition: transform var(--okl-transition), box-shadow var(--okl-transition);
  height: 100%;
}

.okl-post:hover { transform: translateY(-6px); box-shadow: var(--okl-shadow-md); }

.okl-post__media { aspect-ratio: 16 / 10; background: var(--okl-blush); overflow: hidden; }
.okl-post__media img { width: 100%; height: 100%; object-fit: cover; }

.okl-post__body { padding: 28px; }

.okl-post__meta {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--okl-gold-dark);
  margin-bottom: 12px;
}

/* ---------- Footer ---------- */
.okl-footer {
  background: var(--okl-plum-dark);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 80px;
}

.okl-footer h4 {
  color: var(--okl-white);
  font-size: 1.05rem;
  font-family: var(--okl-font-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.okl-footer a { color: rgba(255, 255, 255, 0.78); }
.okl-footer a:hover { color: var(--okl-gold); }

.okl-footer__list { list-style: none; padding: 0; margin: 0; }
.okl-footer__list li { padding: 5px 0; }

.okl-footer__contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 7px 0;
}

.okl-footer__contact i { color: var(--okl-gold); margin-top: 5px; }

.okl-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--okl-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--okl-white);
  margin-bottom: 18px;
}

.okl-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.okl-footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--okl-transition);
}

.okl-footer__social a:hover {
  background: var(--okl-gold);
  border-color: var(--okl-gold);
  color: var(--okl-plum-dark);
  transform: translateY(-3px);
}

.okl-footer__bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0;
  font-size: 0.85rem;
}

.okl-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------- Map ---------- */
.okl-map {
  border-radius: var(--okl-radius-m);
  overflow: hidden;
  box-shadow: var(--okl-shadow-md);
  min-height: 380px;
}

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

/* ---------- Back to top ---------- */
.okl-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 1040;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--okl-plum);
  color: var(--okl-white);
  font-size: 1.05rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--okl-transition);
  box-shadow: var(--okl-shadow-md);
}

.okl-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.okl-top:hover { background: var(--okl-rose); }

/* ---------- Reveal (fallback when AOS disabled) ---------- */
.okl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Cookie banner (unique per site) ---------- */
.okl-cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1080;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border-radius: var(--okl-radius-m);
  background: var(--okl-plum);
  color: var(--okl-white);
  box-shadow: 0 24px 60px rgba(37, 16, 30, 0.4);
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.okl-cookie__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(200, 162, 89, 0.18);
  color: var(--okl-gold);
  font-size: 1.35rem;
}

.okl-cookie__text { flex: 1 1 320px; min-width: 220px; }

.okl-cookie__title {
  font-family: var(--okl-font-serif);
  font-size: 1.25rem;
  color: var(--okl-white);
  margin: 0 0 6px;
}

.okl-cookie__desc {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.okl-cookie__desc a { color: var(--okl-gold); text-decoration: underline; }
.okl-cookie__desc a:hover { color: var(--okl-white); }

.okl-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: auto;
}

.okl-cookie__btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 26px;
  font-family: var(--okl-font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--okl-transition);
}

.okl-cookie__btn--accept {
  background: var(--okl-gold);
  color: var(--okl-plum-dark);
}

.okl-cookie__btn--accept:hover {
  background: var(--okl-white);
  color: var(--okl-plum-dark);
}

.okl-cookie__btn--decline {
  background: transparent;
  color: var(--okl-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.okl-cookie__btn--decline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--okl-white);
}

/* ---------- Utility ---------- */
.okl-bg-blush { background-color: var(--okl-blush); }
.okl-bg-cream { background-color: var(--okl-cream); }
.okl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 16, 30, 0.72), rgba(37, 16, 30, 0.55));
  z-index: 1;
}
.okl-relative { position: relative; z-index: 2; }
.okl-rounded { border-radius: var(--okl-radius-m); overflow: hidden; }
.okl-gold-text { color: var(--okl-gold); }
.okl-section--dark .okl-gold-text { color: var(--okl-gold); }

.okl-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--okl-blush);
  color: var(--okl-rose);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.okl-breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.okl-breadcrumb li::after { content: "/"; margin-left: 10px; opacity: 0.5; }
.okl-breadcrumb li:last-child::after { display: none; }
.okl-breadcrumb a { color: rgba(255, 255, 255, 0.85); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .okl-header__meta { display: none; }
  .okl-burger { display: inline-grid; place-items: center; }

  .okl-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: var(--okl-cream);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform var(--okl-transition);
    box-shadow: -20px 0 60px rgba(37, 16, 30, 0.2);
    overflow-y: auto;
  }

  .okl-nav.is-open { transform: translateX(0); }
  .okl-nav__link { font-size: 1.1rem; padding: 10px 0; }
}

@media (max-width: 767px) {
  .okl-section { padding: 68px 0; }
  .okl-cookie {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }
  .okl-cookie__actions { margin-left: 0; width: 100%; }
  .okl-cookie__btn { flex: 1 1 auto; text-align: center; }
}
/* ---------- Contrast fixes: legal pages / hero ---------- */
/* Hero uses only a background-image (gradient); give it a solid dark base so
   the overlay/hero text has a proper contrast background. */
.okl-hero {
  background-color: var(--okl-plum-dark);
}

/* Legal-document links inside white cards: use a darker tone for AA contrast. */
.okl-card .okl-footer__list a {
  color: var(--okl-plum);
}
.okl-card .okl-footer__list a:hover {
  color: var(--okl-rose);
}

/* ============================================================
   Accessibility contrast overrides (WCAG AA for text)
   ============================================================ */

/* Hero: give the section an explicit dark base colour so text over the
   photo/gradient always has a dark backdrop (white text was measured
   against the page cream background before). */
.okl-hero {
  background-color: #25101e;
}

/* Same for the dark call-to-action band that uses a background photo. */
section.okl-section[style*="ac2be9db3e4ef"] {
  background-color: #25101e;
}

/* Eyebrow labels: darker bronze/olive gold for >=4.5:1 on cream & blush */
.okl-eyebrow {
  color: #7f6026;
}

/* Team role tags: darker rose for >=4.5:1 on the blush pill */
.okl-tag {
  color: #99506b;
}

/* Card / post "read more" links and post titles: darker rose on white */
.okl-card__link,
.okl-post__body h3 a {
  color: #99506b;
}
.okl-post__body h3 a:hover {
  color: #6f3549;
}

/* Post meta label: darker gold for >=4.5:1 on white */
.okl-post__meta {
  color: #7f6026;
}

/* Gallery captions: solid dark backdrop so the white caption text
   always has a dark background even where the photo is light. */
.okl-gallery__caption {
  background-color: #25101e;
}

/* ---------- Contrast fixes (round 2) ---------- */
/* Background images for hero / dark sections now live on a child layer, so the
   section itself carries a solid dark background colour for text contrast. */
.okl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Darken the default gold eyebrow so it meets AA contrast on cream/blush. */
.okl-eyebrow { color: #7a5a1d; }

/* Darken pricing tag text for AA contrast on the blush background. */
.okl-tag { color: #8a3f5c; }

/* ============================================================
   Contrast fixes (contacts page)
   ============================================================ */

/* Privacy link inside the form consent label: darker rose for AA contrast on white. */
.okl-form__consent a,
.okl-form__consent label a {
  color: #99506b;
}
.okl-form__consent a:hover,
.okl-form__consent label a:hover {
  color: #6f3549;
}

/* Dark call-to-action band on the contacts page: solid dark base so the
   white heading/body text and gold eyebrow always sit on a dark backdrop. */
section.okl-section[style*="background-color: #25101e"] {
  color: #ffffff;
}

/* Contrast safeguard: dark process section must always have an opaque dark base */
.okl-dark-process {
  background-color: #25101e !important;
}

/* ============================================================
   Homepage contrast fixes: dark background-image sections
   ============================================================
   The "Werkwijze" and "Nieuwsbrief" bands carry only a CSS
   background-image (photo + gradient) and therefore report the
   page cream colour as their background. Give them a solid dark
   base colour so the white / gold text has a proper dark backdrop. */
section.okl-section[style*="0a953aebd86e2"],
section.okl-section[style*="3e2ee504f2fcc"],
section.okl-section[style*="ac2be9db3e4ef"] {
  background-color: #25101e;
}
section.okl-section[style*="0a953aebd86e2"] h2,
section.okl-section[style*="3e2ee504f2fcc"] h2,
section.okl-section[style*="0a953aebd86e2"] h3,
section.okl-section[style*="3e2ee504f2fcc"] h3,
section.okl-section[style*="0a953aebd86e2"] p,
section.okl-section[style*="3e2ee504f2fcc"] p,
section.okl-section[style*="0a953aebd86e2"] .okl-eyebrow,
section.okl-section[style*="3e2ee504f2fcc"] .okl-eyebrow {
  color: #ffffff;
}
section.okl-section[style*="0a953aebd86e2"] .okl-eyebrow,
section.okl-section[style*="3e2ee504f2fcc"] .okl-eyebrow {
  color: #e3c98a;
}

/* "Samen met" label: darker bronze for AA contrast on the blush band. */
section.okl-section--tight p.mb-0[style*="uppercase"] {
  color: #7a5a1d !important;
}

/* Contrast fix: darken legal content links to meet WCAG AA */
.okl-legal a,
.okl-legal a:visited {
  color: #8a4b64;
  text-decoration: underline;
}
.okl-legal a:hover,
.okl-legal a:focus {
  color: #6e3750;
}
