@charset "UTF-8";
/*
0deg equals: to top
180deg equals: to bottom
270deg equals: to left
90deg equals: to right
*/
@keyframes grow {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(0.25);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
/* 
  Sizes

  0-600px           = Phone                   --> =max-width media query
  600px -900px      = Tablet + Portrait       --> =max-width media query
  900px - 1200px    = Tablet + Landscape      --> =max-width media query

  [1200px - 1800px] = Normal Styles apply here!

  1800px            = Tablet + Portrait       --> =min-width media query

  1em = 16px

  $breakpoint argument choices: 
  1. phone        0-600px
  2. tab-port     600px -900px 
  3. tab-land     900px - 1200px 
  4. big-desktop  1800px

  ORDER: 
  1. BASE + typography. > 
  2. GENERAL LAYOUT: header footer nav + grid > 
  3. PAGE LAYOUT >
  4. COMPONENTS

*/
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  /* Proper practise. Inherit here and, in body: box-sizing: border-box; */
  box-sizing: inherit;
}

/*  To use relative unit 
    -Now: 1rem = 10px (else  DEFAULT is 16px)
    -!!!! Using px is bad practise. use %
    -Divide 10/16 = [[ 625% ]] = 10px
    -Rem is not used in older browsers (9)
*/
html {
  /* You can change this and ALL will inc/dec in size. Now it's 10px
  This defines what 1rem is. 
  */
  font-size: 62.5%;
}

/* Do here because of inheritance, everything will be inherited from body (DONT DO IN '*' (universal) 
*/
body {
  box-sizing: border-box;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-big {
  margin-bottom: 8rem;
}

.u-margin-bottom-medium {
  margin-bottom: 2.5rem;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem;
}

.u-margin-top-big {
  margin-top: 8rem;
}

.u-margin-top-huge {
  margin-top: 10rem;
}

.pad-left {
  padding-left: 3rem;
}

h1 {
  font-size: clamp(3rem, 2.2rem + 3vw, 3rem);
}

h2 {
  font-size: clamp(2.5rem, 1.8rem + 2.2vw, 2.5rem);
}

h3 {
  font-size: clamp(2rem, 1.5rem + 1.6vw, 2rem);
}

h4 {
  font-size: clamp(2rem, 1.3rem + 1vw, 2.8rem);
}

h5 {
  font-size: clamp(1.8rem, 1.2rem + 0.6vw, 2.2rem);
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-family: "UnifrakturCook", cursive;
}

p {
  font-family: "Encode Sans Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

i,
u {
  font-size: 1.6rem;
}

/* Sizes */
.xk-block--h-sm .xk-block__header--title,
.xk-block--h-sm .xk-post__header--title {
  font-size: 2rem;
}

.xk-block--h-md .xk-block__header--title,
.xk-block--h-md .xk-post__header--title {
  font-size: 3rem;
}

.xk-block--h-lg .xk-block__header--title,
.xk-block--h-lg .xk-post__header--title {
  font-size: 4rem;
}

/* Colors – title only */
.xk-block--color-primary .xk-block__header--title,
.xk-block--color-primary .xk-post__header--title {
  color: rgb(255, 181, 0);
}

.xk-block--color-secondary .xk-block__header--title,
.xk-block--color-secondary .xk-post__header--title {
  color: #ffffff;
}

.xk-block--color-tertiary .xk-block__header--title,
.xk-block--color-tertiary .xk-post__header--title {
  color: rgb(86, 87, 95);
}

html,
body {
  height: 100%;
}

body {
  min-height: 100svh;
  background-color: #000000;
  font-family: "Encode Sans Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif, sans-serif;
  font-weight: 200;
  color: #f9f9f9;
  line-height: 1.7;
  position: relative;
  transition: fadeIn 1s forwards;
  display: flex;
  flex-direction: column;
}
body a:hover {
  color: rgb(255, 181, 0);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
a {
  text-decoration: none;
  color: inherit;
  font-weight: bolder;
}
a:hover {
  color: rgb(255, 181, 0);
}

html {
  margin-top: 0 !important;
} /* prevents double-offset if WP margin also kicks in */
body.admin-bar {
  padding-top: var(--wp-admin--admin-bar--height, 3.2rem);
}

/* Nice-to-have: anchors don’t hide under the admin bar when clicking in-page links */
html {
  scroll-padding-top: var(--wp-admin--admin-bar--height, 3.2rem);
}

/* layout/editor.scss */
body > div.editor-visual-editor__post-title-wrapper.edit-post-visual-editor__post-title-wrapper > h1 {
  margin-bottom: 2rem;
  text-align: center;
  border: 1px dotted rgb(86, 87, 95);
  padding: 2rem;
  max-width: 90rem;
  font-size: 4rem;
}

.editor-post-title,
.block-editor-rich-text__editable.xk-block__header--title,
.block-editor-rich-text__editable.xk-post__header--title,
.block-editor-rich-text__editable.xk-gallery__title {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  transition: all 0.5s;
}
.editor-post-title:hover,
.block-editor-rich-text__editable.xk-block__header--title:hover,
.block-editor-rich-text__editable.xk-post__header--title:hover,
.block-editor-rich-text__editable.xk-gallery__title:hover {
  color: rgb(255, 181, 0);
}

.block-editor-rich-text__editable.xk-block__header--subtitle,
.block-editor-rich-text__editable.xk-post__header--subtitle,
.block-editor-rich-text__editable.xk-gallery__subtitle {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  transition: all 0.5s;
}
.block-editor-rich-text__editable.xk-block__header--subtitle:hover,
.block-editor-rich-text__editable.xk-post__header--subtitle:hover,
.block-editor-rich-text__editable.xk-gallery__subtitle:hover {
  color: rgb(86, 87, 95);
}

.block-editor-rich-text__editable.xk-btn:hover {
  background-color: #ff005a;
}

.placeholder-block {
  font-family: "Encode Sans Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  padding: 2rem;
  text-align: center;
  font-size: 1.65rem;
  background: linear-gradient(90deg, #000000, rgb(86, 87, 95));
  max-width: 90rem;
  display: block;
  color: #f9f9f9;
}

/* Center & size ALL blocks to the content width */
.editor-styles-wrapper .wp-block {
  margin-left: auto;
  margin-right: auto;
}

/* Center the editor content area */
.editor-styles-wrapper .is-root-container {
  margin-inline: auto;
  width: min(90rem, 80%);
}

.wp-block-xkokobael-xk-gallery {
  width: 100%;
}

.site-footer {
  background: rgba(25, 25, 25, 0.3);
  color: #f9f9f9;
  border-top: 0.0625rem solid rgba(249, 249, 249, 0.08);
  padding: 3rem 0;
  margin-top: 3rem;
  position: relative;
  /* Socials */
}
.site-footer::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(120px, 18vw, 240px);
  aspect-ratio: 1/1;
  background: url("../Images/logos/watermark_1_1.png") right/contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
@media only screen and (max-width: 37.5em) {
  .site-footer::after {
    right: auto;
    top: 3rem;
    left: 6.5rem;
    bottom: auto;
  }
}
.site-footer__inner {
  max-width: 90rem;
  padding-inline: clamp(1rem, 4vw, 4rem);
  margin-inline: auto;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: center;
  gap: 3rem;
  column-gap: clamp(2rem, 6vw, 5rem);
  justify-items: start;
  align-items: start;
}
@media only screen and (max-width: 56.25em) {
  .site-footer__grid {
    gap: 3rem;
    grid-template-columns: max-content;
    justify-content: center;
    justify-items: start;
    margin-left: 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .site-footer__grid {
    margin-left: 6.5rem;
  }
}
.site-footer__title {
  font-family: "MedievalSharp", cursive;
  color: #f9f9f9;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.02em;
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
@media only screen and (max-width: 56.25em) {
  .site-footer__list {
    gap: 0;
  }
}
.site-footer__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #f9f9f9;
  text-decoration: none;
  padding: 0.4rem 0.5rem;
  border-radius: 0.5rem;
  transition: color 0.18s ease, background 0.18s ease;
}
.site-footer__list a i {
  font-size: 0.95em;
  opacity: 0.9;
}
.site-footer__list a:hover, .site-footer__list a:focus {
  color: rgb(255, 181, 0);
  background: rgba(249, 249, 249, 0.06);
  outline: none;
}
.site-footer__list__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid rgba(249, 249, 249, 0.08);
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .site-footer__social, .site-footer__explore {
    justify-content: center;
  }
}
.site-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .site-footer__social {
    justify-content: start;
  }
}
.site-footer__social .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  border: 0.0625rem solid rgba(249, 249, 249, 0.12);
  background: rgba(249, 249, 249, 0.06);
  transition: transform 0.1s ease, background 0.18s ease, border-color 0.18s ease;
}
.site-footer__social .social i {
  color: #f9f9f9;
  font-size: 1rem;
}
.site-footer__social .social i:hover {
  color: rgb(255, 181, 0);
}
.site-footer__social .social:hover, .site-footer__social .social:focus {
  transform: translateY(-0.05rem);
  background: rgba(249, 249, 249, 0.1);
  border-color: rgba(249, 249, 249, 0.2);
}
.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid rgba(249, 249, 249, 0.08);
  text-align: center;
}
.site-footer__copy {
  margin: auto;
  font-family: "Encode Sans Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.2rem;
  color: rgba(249, 249, 249, 0.9);
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 56.25em) {
  .site-footer__copy {
    justify-content: center;
  }
}

.pad-left {
  padding-left: 0;
}

/* ===================== SITE HEADER ===================== */
.site-header {
  background-color: rgba(25, 25, 25, 0.3);
  color: #f9f9f9;
  padding: 3rem 0;
  border-bottom: 0.06rem solid rgba(249, 249, 249, 0.08);
  margin-bottom: 3rem;
  --nav-gap: clamp(0.6rem, 1.4vw, 1rem);
  /* Row: logo | nav | search */
  /* Search button */
  /* ===== Navigation ===== */
}
@media only screen and (max-width: 37.5em) {
  .site-header {
    padding: 0.5rem 0;
  }
}
.site-header__container {
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo & nav | actions */
  justify-items: center;
  align-items: center;
  gap: var(--nav-gap);
  grid-template-areas: "logo nav search";
  max-width: 90rem;
  padding-inline: clamp(1rem, 4vw, 4rem);
  margin-inline: auto;
}
@media only screen and (max-width: 37.5em) {
  .site-header__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: auto;
    gap: 0;
    padding: 0.5rem 0 1rem 0;
    position: relative;
  }
}
.site-header__logo {
  grid-area: logo;
  justify-self: start;
}
@media only screen and (max-width: 37.5em) {
  .site-header__logo {
    margin-bottom: 1.5rem;
  }
}
.site-header__menu-searchbox {
  order: 3;
  grid-area: search;
  justify-self: end; /* keep to the right on wide */
}
@media only screen and (max-width: 37.5em) {
  .site-header__menu-searchbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    margin: 0;
  }
}
.site-header__search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  color: #f9f9f9;
  background: rgba(249, 249, 249, 0.06);
  border: 0.0625rem solid rgba(249, 249, 249, 0.1);
  transition: color 0.18s ease, background 0.18s ease, transform 0.1s ease;
  cursor: pointer;
}
@media only screen and (max-width: 37.5em) {
  .site-header__search-trigger {
    justify-self: end;
    margin-inline-start: 0;
    margin-top: var(--nav-gap);
  }
}
.site-header__search-trigger:hover, .site-header__search-trigger:focus {
  transform: translateY(-0.05rem);
  background: rgba(249, 249, 249, 0.2);
  border-color: rgba(249, 249, 249, 0.2);
}
.site-header__main-navigation {
  grid-area: nav;
  justify-self: center;
}
.site-header__list {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: clamp(0.4rem, 1vw, 0.7rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 56.25em) {
  .site-header__list {
    margin-right: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .site-header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.site-header__list a {
  display: inline-flex;
  align-items: center;
  color: #f9f9f9;
  text-decoration: none;
  padding: 0.5rem;
  font-family: "MedievalSharp", cursive;
  border-radius: 0.5rem;
  letter-spacing: 0.02em;
  font-size: 2.5rem;
  transition: color 0.18s ease, background-color 0.18s ease;
  line-height: 1;
  white-space: nowrap;
}
.site-header__list a i,
.site-header__list a .fa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  margin: 0;
  opacity: 0.9;
}
@media only screen and (max-width: 56.25em) {
  .site-header__list a {
    font-size: 2rem;
    gap: 0.8rem;
  }
}
.site-header__list a:hover, .site-header__list a:focus {
  color: rgb(255, 181, 0);
  background: rgba(249, 249, 249, 0.1);
  outline: none;
}

/* ===== Koko's logo ===== */
.site-header__logo {
  grid-area: logo;
}
@media only screen and (max-width: 37.5em) {
  .site-header__logo {
    display: inline-flex;
    align-items: center;
  }
}
.site-header__logo a {
  padding: 0;
}
.site-header__logo:hover, .site-header__logo:focus {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: inherit;
  padding: 0;
}
.site-header__logo img {
  display: block;
  height: auto;
  width: auto;
  transition: transform 0.18s ease;
  transform-origin: center center;
}
@media only screen and (max-width: 56.25em) {
  .site-header__logo img {
    display: inline-flex;
    width: 12rem;
    height: 4rem;
    margin-right: 3rem;
  }
}
.site-header__logo img:hover, .site-header__logo img:focus {
  transform: scale(1.02);
}

/* ===== Active link highlight ===== */
.on-front-page a,
.current-menu-item a {
  color: rgb(255, 181, 0);
  transition: all 0.3s;
}

/* ===== Overlay frame ===== */
.search-overlay {
  background-color: rgb(15, 16, 22);
  color: black;
  position: fixed;
  inset: 0;
  z-index: 110;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  opacity: 0;
  padding-top: 3rem;
  transform: scale(1.01);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  /* ===== Top bar: icon + input perfectly aligned ===== */
  /* ===== Results container centered ===== */
  /* ===== Columns / sections – same left edge, no bullets ===== */
  /* lists: remove bullets + align left edges */
  /* ===== Event summary — friendlier date pill ===== */
}
.search-overlay--active {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.search-overlay__top {
  background: rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.search-overlay__top .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  max-width: min(92%, 64rem);
  margin-inline: auto;
}
.search-overlay__icon {
  flex: 0 0 auto;
  font-size: clamp(1.6rem, 1.2vw, 2.2rem);
  color: rgb(255, 181, 0);
  line-height: 1; /* prevents baseline wobble */
  display: inline-block;
  translate: 0 0.05rem; /* micro-nudge for optical balance */
}
.search-overlay .search-term {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  padding: 0.55rem 0 0.45rem; /* input height ≈ icon */
  font-size: clamp(1.6rem, 1.2vw, 2.2rem);
  color: #f7f7f7;
}
.search-overlay .search-term::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.search-overlay .search-term:focus {
  outline: none;
  border-color: rgb(255, 181, 0);
  box-shadow: 0 2px 0 0 rgba(255, 181, 0, 0.35);
}
.search-overlay__close {
  margin-left: 0.5rem;
  font-size: 1.35rem;
  color: rgb(255, 181, 0);
  cursor: pointer;
  background: transparent;
  border: 0;
  line-height: 1;
  transition: transform 0.15s ease;
}
.search-overlay__close:hover {
  transform: scale(1.06);
}
.search-overlay .container {
  display: flex;
  justify-content: center;
}
.search-overlay #search-overlay__results {
  width: min(92%, 64rem);
  margin: 1rem auto 2rem;
}
.search-overlay .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.search-overlay .one-third {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  padding: 1rem 1.1rem; /* readable padding */
}
.search-overlay__section-title {
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgb(255, 181, 0);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1.7rem, 1.3vw, 2.4rem);
}
.search-overlay .link-list,
.search-overlay .min-list,
.search-overlay .one-third ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.search-overlay .one-third li {
  margin: 0.4rem 0;
}
.search-overlay .one-third a {
  color: #f5f5f5;
  text-decoration: none;
}
.search-overlay .one-third a:hover {
  color: rgb(255, 181, 0);
  text-decoration: underline;
}
.search-overlay .event-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 0.75rem 0;
}
.search-overlay .event-summary__date {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.85rem;
  background: rgba(255, 181, 0, 0.8);
  font-weight: 700;
  padding: 0.5rem;
}
.search-overlay .event-summary__month {
  font-size: 1rem;
  line-height: 1.2;
}
.search-overlay .event-summary__day {
  font-size: 1.1rem;
  line-height: 1.1;
}
.search-overlay .event-summary__title a {
  color: #f9f9f9;
}
.search-overlay .event-summary__title a:hover {
  color: rgb(255, 181, 0);
}
.search-overlay .event-summary p {
  color: #ddd;
  margin: 0.25rem 0 0;
}
.search-overlay .result-author {
  display: inline-block;
  margin-left: 0.3rem;
  color: rgb(86, 87, 95);
}
.search-overlay .result-author__by {
  opacity: 0.85;
}
.search-overlay .result-author__name {
  font-weight: 600;
}
.search-overlay .no-results-msg {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  display: grid;
  padding-left: 2rem;
  padding-top: 2rem;
  min-height: 28vh;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: #ff005a;
}

/* lock scroll when overlay is open */
.body-no-scroll {
  overflow: hidden;
}

/* spinner */
.spinner-loader {
  width: 30px;
  height: 30px;
  margin: 1rem auto;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: rgb(255, 181, 0);
  border-radius: 50%;
  animation: xk-spin 0.8s linear infinite;
}

@keyframes xk-spin {
  to {
    transform: rotate(360deg);
  }
}
.xk-block {
  display: grid;
  grid-template-columns: clamp(12rem, 25vw, 20rem) 1fr clamp(12rem, 25vw, 20rem);
  grid-template-rows: auto auto;
  grid-template-areas: "media header header" "media body body" "media button button";
  gap: 1rem;
  padding-inline: clamp(1rem, 4vw, 4rem);
  margin: 3rem auto;
  justify-content: center;
  text-align: center;
  background-color: rgba(25, 25, 25, 0.3);
  color: #f9f9f9;
  box-shadow: 0.1rem 0.1rem 1rem 0.1rem rgba(249, 249, 249, 0.1);
  max-width: 90rem;
  padding-block: 2rem;
  padding-inline: clamp(1rem, 4vw, 4rem);
}
.xk-block__btn {
  grid-area: button;
}
.xk-block__btn a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
}
.xk-block__btn > * {
  display: inline-flex;
  margin: 0;
}
.xk-block__media {
  grid-area: media;
  align-self: center;
  padding: 0.5rem 1rem;
}
.xk-block__media-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
}
.xk-block__media-image--placeholder {
  background: repeating-conic-gradient(#eee 0 10%, #ddd 0 20%);
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  width: 100%;
}
.xk-block__header {
  grid-area: header;
  padding: 0.3rem 0;
}
.xk-block__header--subtitle {
  grid-area: subtitle;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  margin: 0;
}
.xk-block__body {
  grid-area: body;
}
.xk-block__body--textarea {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dotted rgba(249, 249, 249, 0.1);
  margin: 3rem auto;
}
.xk-block__image-right {
  grid-template-areas: "header header media" "body   body   media" "button button media";
}

/* this class is applied to the same element as .xk-block */
/* Mobile stack */
@media (max-width: 48rem) {
  .xk-block {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "header" "body" "button";
  }
  .xk-block--image-right {
    grid-template-areas: "media" "header" "body";
  }
}
html.xk-consent-lock,
html.xk-consent-lock body {
  overflow: hidden;
}

.xk-consent {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(0.3rem);
  z-index: 99999;
}

.xk-consent__panel {
  display: grid;
  gap: 1rem;
  width: min(42rem, 90vw);
  padding: 2rem;
  border-radius: 1rem;
  background: #0f0f13;
  color: #fff;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.4);
  text-align: center;
}

.xk-consent__title {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0;
  color: rgb(255, 181, 0);
}

.xk-consent__text {
  font-size: 1.5rem;
  margin: 0;
  opacity: 0.9;
  transition: all 2s;
}
.xk-consent__text:hover {
  transform: scale(1.2);
  font-weight: bolder;
}

.xk-consent__note {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0.5rem 0 0;
}

.xk-consent__link {
  color: inherit;
  text-decoration: underline;
}

.xk-consent__form {
  display: grid;
  gap: 1rem;
}
.xk-consent__form--p {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
}

.xk-consent__check {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  transition: all 2s;
}
.xk-consent__checkinput[type=checkbox] {
  cursor: pointer;
}
.xk-consent__check:hover, .xk-consent__check:active {
  transform: scale(1.5);
}

.xk-consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.xk-consent__btn {
  font: inherit;
  font-size: 1.5rem;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.15);
  background: #1c1c24;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.xk-consent__btn--ok {
  background: rgb(255, 181, 0);
  border: none;
}
.xk-consent__btn--no {
  background: inherit;
}
.xk-consent__btn:active, .xk-consent__btn:hover {
  transform: scaleY(1.2);
}
.xk-consent__btn:focus-visible {
  outline: 0.2rem solid #fff;
  outline-offset: 0.2rem;
}

.xk-consent[hidden] {
  display: none;
}

.xk-consent__error {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.4rem;
  color: #b00020;
  font-weight: bolder;
  -webkit-transition: bounce 0.4s ease infinite alternate;
}

@-webkit-keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-0.4rem);
  }
}
@media (max-width: 40rem) {
  .xk-consent__actions {
    grid-template-columns: 1fr;
  }
}
/* Stop scroll chaining behind the popup */
@media (pointer: coarse) {
  .consent {
    overscroll-behavior: contain;
  }
}
.xk-events {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 95rem;
  height: 100%;
  padding: 2rem;
  margin: 2rem auto;
  padding-inline: clamp(1rem, 4vw, 4rem);
  text-align: center;
  color: #f9f9f9;
  background-color: rgba(25, 25, 25, 0.3);
  box-shadow: 0.1rem 0.1rem 1rem 0.1rem rgba(249, 249, 249, 0.1);
}
.xk-events .xk-events__schedule {
  max-width: 90rem;
  box-shadow: 0.1rem 0.1rem 1rem 0.1rem rgba(249, 249, 249, 0.3);
}
.xk-events .xk-events__schedule:hover {
  cursor: pointer;
}
.xk-events .xk-events__schedule__list {
  background-color: rgba(0, 0, 0, 0.05);
  color: #f9f9f9;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.xk-events .xk-events__schedule__row, .xk-events .xk-events__schedule__list__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in;
}
.xk-events .xk-events__schedule__row:hover, .xk-events .xk-events__schedule__list__row:hover {
  border-top: 1px solid black;
  color: rgb(15, 16, 22);
  background-color: #f9f9f9;
}
.xk-events .xk-events__schedule__row:last-child, .xk-events .xk-events__schedule__list__row:last-child {
  border-bottom: 0;
}
.xk-events .xk-events__schedule__row--head, .xk-events .xk-events__schedule__list__row--head {
  font-weight: 700;
  background-color: #ffffff;
  overflow: hidden;
  color: rgb(15, 16, 22);
  transition: all 0.3s ease-in;
}
.xk-events .xk-events__schedule__row--head:hover, .xk-events .xk-events__schedule__list__row--head:hover {
  border: 1px solid rgb(255, 181, 0);
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 100%;
}
.xk-events .xk-events__schedule__list--day, .xk-events .xk-events__schedule__list--time, .xk-events .xk-events__schedule__list--platform {
  justify-self: start;
  text-align: left;
  padding: 0;
  width: auto;
  height: auto;
}
.xk-events .xk-events__schedule__list--day {
  padding-right: 0.75rem;
}
.xk-events .xk-events__schedule__list--time {
  padding-left: 0.2rem;
  font-variant-numeric: tabular-nums;
}
.xk-events .xk-events__schedule__list--platform {
  padding-left: 0.75rem;
}
.xk-events .xk-events__schedule__row:not(.xk-events__schedule__row--head) .xk-events__schedule__list--time {
  border-left: 0.1rem solid rgba(173, 120, 8, 0.6);
  padding-left: 1rem;
}
.xk-events .xk-events__schedule__row:not(.xk-events__schedule__row--head) .xk-events__schedule__list--platform {
  border-left: 0.1rem solid rgba(173, 120, 8, 0.6);
  padding-left: 1rem;
}

.minh-viewport {
  min-height: 60svh;
}

.maxh-viewport {
  max-height: 80svh;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.xk-post {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 3rem auto;
  justify-content: center;
  text-align: center;
  background-color: rgba(25, 25, 25, 0.3);
  color: #f9f9f9;
  box-shadow: 0.1rem 0.1rem 1rem 0.1rem rgba(249, 249, 249, 0.1);
  max-width: 90rem;
  padding-block: 2rem;
  padding-inline: clamp(1rem, 4vw, 4rem);
}
.xk-post__header {
  padding: 0.3rem 0;
}
.xk-post__header--subtitle {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 400;
  margin: 0;
}
.xk-post__body--textarea {
  border-top: 1px dotted rgba(249, 249, 249, 0.1);
  margin: 3rem auto;
  margin-top: 1rem;
  padding-top: 1rem;
}

:root {
  --xk-header-h: 80px; /* todo: tweak to  real header height */
  --xk-footer-h: 260px; /* todo: tweak to  real footer height */
}

.xk-Slides,
.xk-lightbox__stage {
  position: relative;
}

.xk-Slides::after,
.xk-lightbox__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background: url("../Images/logos/watermark_1_1.png") center/30% no-repeat; /* single mark */
}

.xk-gallery {
  --gap: 1.5rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  background: rgba(25, 25, 25, 0.3);
  box-shadow: 0.1rem 0.1rem 1rem 0.1rem rgba(249, 249, 249, 0.1);
  border-radius: 0.8rem;
  padding-block: 2rem;
  justify-content: center;
  text-align: center;
  background-color: rgba(25, 25, 25, 0.3);
  color: #f9f9f9;
  box-shadow: 0.1rem 0.1rem 1rem 0.1rem rgba(249, 249, 249, 0.1);
  max-width: 90rem;
  padding-block: 2rem;
  padding-inline: clamp(1rem, 4vw, 4rem);
}
.xk-gallery__header {
  text-align: center;
  padding: 0.3rem 0;
}
.xk-gallery__header--subtitle {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 400;
  margin: 0;
}
.xk-gallery__grid {
  display: grid;
  gap: var(--gap);
  margin-inline: auto;
  justify-content: center;
  justify-items: center;
  justify-self: center;
  grid-template-columns: repeat(4, minmax(14rem, 1fr));
  border-top: 1px dotted rgba(249, 249, 249, 0.1);
  margin: 3rem auto;
}
.xk-gallery__item {
  margin: 0;
}
.xk-gallery__img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.8rem;
  cursor: zoom-in;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, outline-color 0.15s ease-out;
}
.xk-gallery__img:hover, .xk-gallery__img:focus-visible {
  transform: translateY(-0.1rem);
  outline: 0.12rem solid rgba(255, 181, 0, 0.7);
  outline-offset: 0.12rem;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 37.5em) {
  .xk-gallery__img {
    margin: 0 auto;
  }
}
.xk-gallery__placeholder {
  padding: 1.5rem;
  border: 0.06rem solid rgba(249, 249, 249, 0.08);
  border-radius: 0.8rem;
  text-align: center;
  color: rgb(182, 194, 203);
}

/* ─────────────────────────────────────────────
   2) Lightbox overlay
   ──────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding-top: 10rem;
  overflow: hidden;
  background: rgba(15, 16, 22, 0.92);
  overscroll-behavior: contain;
}

.modal-content {
  background: transparent;
  box-shadow: none;
  border: 0;
  margin: auto;
  padding: 0;
  width: min(90vw, 1200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ─────────────────────────────────────────────
   3) Slide + image
   ──────────────────────────────────────────── */
/* Your renamed slide container */
.xk-Slides {
  display: inline-block;
  max-width: 100%;
  /* Reserve vertical space so the image doesn’t jump/leave gaps */
  display: none; /* (re-declare so intent is clear) */
  position: relative;
  min-height: 0;
  overflow: hidden;
}

/* Big image inside the lightbox */
.xk-lightbox__img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  background-color: transparent;
  width: auto;
  height: auto;
  transition: transform 200ms ease;
  cursor: zoom-in;
  transform-origin: center;
}

.xk-lightbox__img.zoomed {
  transform: scale(2);
  cursor: zoom-out;
}

/* Number text “1 / N” */
.numbertext {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: #f9f9f9;
  font-size: 1rem;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* ─────────────────────────────────────────────
   4) Caption
   ──────────────────────────────────────────── */
.caption-container {
  margin-top: 0.5rem;
  color: #f9f9f9;
  background: transparent;
  text-align: center;
  font-size: 1rem;
}

.caption {
  margin: 0;
}

/* ─────────────────────────────────────────────
   5) Controls
   ──────────────────────────────────────────── */
.close,
.prev,
.next {
  position: fixed;
  color: #f9f9f9;
  background: rgba(15, 16, 22, 0.55);
  border: 0;
  font-size: 4rem;
  padding: 0.5rem 1.5rem;
  border-radius: 0.8rem;
  cursor: pointer;
}
.close:hover, .close:focus-visible,
.prev:hover,
.prev:focus-visible,
.next:hover,
.next:focus-visible {
  outline: 0.12rem solid rgba(255, 181, 0, 0.8);
  outline-offset: 0.12rem;
  background: rgba(15, 16, 22, 0.7);
}

.close {
  top: 1.5rem;
  right: 1.5rem;
  position: fixed; /* ensure it’s not inside flow */
}

.prev {
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
}

.next {
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}

/* ─────────────────────────────────────────────
   6) (Optional/UNUSED) Thumbnails row
   ──────────────────────────────────────────── */
/* UNUSED: not rendering thumbs/dots in PHP.
   Keep if you plan a strip of thumbnails later. */
.row.thumbs {
  display: grid;
  grid-auto-flow: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
  overflow-x: auto;
}

.column {
  width: 8rem;
} /* Thumbnail width */
.demo {
  opacity: 0.6;
} /* UNUSED: “dot/thumb” element */
.active,
.demo:hover {
  opacity: 1;
}

.demo.cursor {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.8rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.demo.cursor.active,
.demo.cursor:hover {
  opacity: 1;
}

/* UNUSED: not referenced in your current render */
img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

html.xk-no-scroll,
body.xk-no-scroll {
  overflow: hidden;
}

/* Gallery pagination */
.xk-gallery__pagination {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.xk-page-btn,
.xk-page-dot {
  color: #f9f9f9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  padding: 0.5rem 0.9rem;
  border-radius: 9999rem;
  line-height: 1;
  cursor: pointer;
}
.xk-page-btn:hover,
.xk-page-dot:hover {
  color: rgb(255, 181, 0);
}

.xk-page-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.xk-page-dots {
  display: grid;
  grid-auto-flow: column;
  gap: 0.5rem;
}

.xk-page-dot {
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
}

.xk-page-dot.is-active {
  border-color: rgba(255, 181, 0, 0.7);
  font-weight: 700;
}

/* ✅ GRID: correct selector + 2 cols at tablet, 1 col on phones */
@media (max-width: 60rem) {
  .xk-gallery__grid {
    grid-template-columns: repeat(2, minmax(12rem, 1fr));
    width: 100%;
    margin: 0;
  }
  .xk-gallery__img {
    width: 100%;
  }
}
@media (max-width: 40rem) {
  .xk-gallery__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0;
  }
  .xk-gallery__img {
    width: 100%;
  }
}
/* ✅ LIGHTBOX: make arrows sit on top of the image on small screens */
@media (max-width: 60rem) {
  /* the slide is the positioning context */
  .xk-Slides {
    position: relative;
    display: grid;
    place-items: center;
  }
  /* override the desktop “fixed” arrows */
  .modal .prev,
  .modal .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }
  .modal .prev {
    left: 0.75rem;
  }
  .modal .next {
    right: 0.75rem;
  }
  /* keep the close button at the top-right of the modal */
  .modal .close {
    position: absolute;
    top: var(--pad-m, 1rem);
    right: var(--pad-m, 1rem);
    z-index: 21;
  }
}
/* Woo basics */
.woocommerce {
  font-family: "Encode Sans Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #f9f9f9;
}

/* product grid */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1.25rem;
}

.woocommerce ul.products li.product,
.woocommerce div.product {
  background: rgba(15, 16, 22, 0.35);
  border: 0.06rem solid rgba(249, 249, 249, 0.08);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
}

/* titles and prices */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  font-family: "Encode Sans Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 300;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price {
  color: rgb(255, 181, 0);
  font-weight: 600;
}

/* buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: "Encode Sans Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgb(255, 181, 0), gold);
  color: #111;
  border: 0;
  padding: 0.5rem 0.9rem;
  transition: transform 0.1s ease, filter 0.18s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

/* forms (checkout/account) */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: rgba(15, 16, 22, 0.5);
  border: 1px solid rgba(249, 249, 249, 0.15);
  color: #f9f9f9;
  border-radius: 0.5rem;
}

/* compact card for tiny hero/notes */
.xk-post--compact {
  margin-block: 0.75rem;
  padding-block: 0.75rem;
  padding-inline: 1rem;
  box-shadow: none;
  background: transparent;
  border: 0;
}

/* ===== Section cards (front-end) ===== */
.commissions {
  --gap: 1rem;
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  /* Price pill stays readable */
}
.commissions .card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: 1rem;
  overflow: clip; /* trims image bleed */
}
.commissions .card__media {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.commissions .card__title {
  font-size: var(--step-1);
}
.commissions .price {
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 999rem;
  inline-size: fit-content;
}

/* Phones: single column, bigger tap targets */
@media (max-width: 40rem) {
  .commissions {
    grid-template-columns: 1fr;
    --gap: 0.8rem;
  }
  .commissions .card__actions .btn {
    padding: 0.75rem 1rem; /* ~44px touch size */
    inline-size: 100%;
  }
}
/* If you still have a comparison TABLE somewhere */
.commissions-table {
  width: 100%;
  border-collapse: collapse;
}

@media (max-width: 48rem) {
  .commissions-table {
    display: grid;
    gap: 0.75rem;
  }
  .commissions-table thead {
    display: none;
  }
  .commissions-table tr {
    display: grid;
    gap: 0.25rem;
    padding: 0.9rem;
    border: 1px dashed var(--border, rgba(255, 255, 255, 0.2));
    border-radius: 0.9rem;
  }
  .commissions-table td::before {
    content: attr(data-label) " ";
    font-weight: 600;
    opacity: 0.8;
  }
}
/* Search results page — clean + readable */
.container-search {
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 1.25rem 0 2rem;
  background: rgba(243, 244, 246, 0.8);
  min-height: 65vh;
  color: #111;
}
.container-search__inner-box {
  width: min(92%, 48rem);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(0.25rem);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}
.container-search__label {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  color: rgb(255, 181, 0); /* accent only here */
  letter-spacing: 0.015em;
}
.container-search__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}
.container-search__input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #111;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.4;
}
.container-search__input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.container-search__input:focus-visible {
  outline: none;
  border-color: rgba(255, 181, 0, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(255, 181, 0, 0.25);
}
.container-search__btn {
  padding: 0.9rem 1.1rem;
  border: 0;
  border-radius: 0.75rem;
  background: rgb(255, 181, 0);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0.5rem 1.25rem rgba(255, 181, 0, 0.25);
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}
.container-search__btn:hover {
  transform: translateY(-1px);
}
.container-search__btn:active {
  transform: translateY(0);
}
.container-search__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 181, 0, 0.35);
}
.container-search__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}
@media (max-width: 34rem) {
  .container-search__row {
    grid-template-columns: 1fr;
  }
  .container-search__btn {
    width: 100%;
  }
}

.contact {
  --fg: $clr-secondary;
  --accent: $clr-tertiary;
  display: grid;
  place-items: center;
  z-index: 1000;
}
.contact__inner {
  width: min(60rem, 100%);
  padding: 2rem 2.4rem;
  background-color: rgba(25, 25, 25, 0.3);
  color: #f9f9f9;
  border: 1px solid rgba(86, 87, 95, 0.25);
  box-shadow: 0 0.2rem 0.8rem rgba(86, 87, 95, 0.35);
  border-radius: 1rem;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .contact__inner {
    width: min(40rem, 80%);
  }
}
@media only screen and (max-width: 56.25em) {
  .contact__inner {
    width: min(60rem, 100%);
  }
}
.contact__title {
  margin: 0 0 0.6rem 0;
  font-family: "Encode Sans Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0.1rem;
}
.contact__text {
  margin: 0 0 1.2rem 0;
  opacity: 0.9;
}
.contact__form {
  display: grid;
  gap: 2rem;
  text-align: left;
  position: relative;
}
.contact__row {
  display: grid;
  gap: 0.3rem;
}
.contact__row label {
  font-weight: 700;
  font-family: "Encode Sans Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.contact__row input, .contact__row textarea {
  font: 600 1rem/1.4 "Encode Sans Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2.2rem);
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(86, 87, 95, 0.25);
  border-radius: 0.6rem;
  background: rgba(249, 249, 249, 0.8);
  color: #000000;
  outline: none;
  transition: all 0.2s ease-in-out;
}
.contact__row input:focus, .contact__row textarea:focus {
  border-color: rgb(255, 181, 0);
  box-shadow: 0 0 0 0.2rem rgba(255, 181, 0, 0.25);
}
.contact__btn {
  justify-self: center;
  align-items: center;
  display: flex;
  margin-top: 2rem;
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  background: rgb(86, 87, 95);
  text-transform: uppercase;
  color: #f9f9f9;
  text-shadow: 1px 1px 2px rgba(86, 87, 95, 0.7);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0.1rem 0.3rem rgba(86, 87, 95, 0.3);
}
.contact__btn:hover {
  transform: translateY(-1px);
  color: rgb(255, 181, 0);
  opacity: 0.4;
}
.contact__hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.contact__bnyu {
  position: absolute;
  bottom: 0.8rem;
  right: 0.4rem;
  width: 2rem;
  height: 1.7rem;
  opacity: 0.5;
  pointer-events: none;
}
.contact__icon--envelope, .contact__icon--phone {
  color: rgb(86, 87, 95);
}
.contact__status {
  color: #ffffff;
  text-align: center;
}

.wpcf7 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wpcf7 li {
  margin: 0;
  padding: 0;
}

.wpcf7-response-output {
  margin: 0.4rem 0 0;
  padding: 0;
  border: 0;
  color: #f9f9f9;
  text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: rgb(255, 181, 0);
}

:root {
  --wp--preset--color--primary: rgb(255, 181, 0);
  --wp--preset--color--secondary: #ffffff;
  --wp--preset--color--tertiary: rgb(86, 87, 95);
  --xk-bg: #000000;
  --xk-surface: rgb(15, 16, 22);
  --xk-surface-soft: rgba(25, 25, 25, 0.3);
  --xk-text: #f9f9f9;
  --xk-muted: rgb(182, 194, 203);
  --xk-border: 0.06rem solid rgba(249, 249, 249, 0.08);
  --xk-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.08);
  --xk-accent: rgb(255, 181, 0);
  --xk-danger: #ff005a;
  --xk-txt-gothic: Palatino Linotype, Book Antiqua, Palatino, serif;
}

html {
  background: var(--xk-bg);
}

body.login {
  background: radial-gradient(circle at top, rgba(255, 254, 254, 0.03), transparent 50%), var(--xk-bg);
  color: var(--xk-text);
  font-family: Encode Sans Condensed, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body.login h1 a {
  background-image: url("../Images/logos/logo_kb_new_2.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24rem;
  height: 10rem;
}

/* Center + spacing */
body.login #login {
  padding: 3rem 1.5rem;
}

body.login #login h1 a {
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.6));
  opacity: 0.95;
}

/* The card */
body.login #loginform {
  background: var(--xk-surface-soft);
  border: var(--xk-border);
  box-shadow: var(--xk-shadow);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(0.4rem);
}

/* Labels: brighter + spaced */
body.login label {
  color: var(--xk-text);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  font-family: var(--xk-txt-gothic);
}

/* Inputs: dark, readable, consistent with theme */
body.login .input,
body.login input[type=text],
body.login input[type=password] {
  background: rgba(0, 0, 0, 0.25);
  color: var(--xk-text);
  border: var(--xk-border);
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  font-size: 1.6rem;
  box-shadow: none;
}

body.login input::placeholder {
  color: rgba(182, 194, 203, 0.75);
}

/* Focus: super important for readability + accessibility */
body.login .input:focus,
body.login input:focus {
  outline: none;
  border-color: var(--xk-accent);
  box-shadow: 0 0 0 0.25rem rgba(255, 181, 0, 0.25);
}

/* Remember me row */
body.login .forgetmenot label {
  color: var(--xk-muted);
}

/* Checkbox accent */
body.login input[type=checkbox] {
  accent-color: var(--xk-accent);
}

/* Button: match your theme */
body.login .button-primary {
  background: var(--xk-accent);
  border: none;
  color: #111;
  border-radius: 0.6rem;
  padding: 0.6rem 1.1rem;
  font-weight: 600;
  text-shadow: none;
  box-shadow: none;
  transition: transform 120ms ease, filter 120ms ease;
}

body.login .button-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-0.06rem);
  background-color: rgba(255, 181, 0, 0.25);
}

body.login .button-primary:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(255, 181, 0, 0.35);
}

/* Links: readable and consistent */
body.login #nav a,
body.login #backtoblog a {
  color: var(--xk-muted);
  text-decoration: none;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
  color: var(--xk-text);
  text-decoration: underline;
}

/* Error + messages */
body.login #login_error,
body.login .message,
body.login .success {
  border-left: 0.3rem solid var(--xk-danger);
  background: rgba(255, 0, 90, 0.08);
  color: var(--xk-text);
  border-radius: 0.8rem;
  padding: 1rem;
}

/* Password “eye” icon area tweaks */
body.login .wp-pwd button {
  color: var(--xk-muted);
}

body.login .wp-pwd button:hover {
  color: var(--xk-text);
}

/* Privacy policy link often looks tiny/dim */
body.login .privacy-policy-page-link a {
  color: var(--xk-muted);
}

body.login .privacy-policy-page-link a:hover {
  color: var(--xk-text);
}

/* ===== Minimal Button ===== */
.xk-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  /* minimal motion */
  transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease;
  background: rgb(15, 16, 22); /* rgb(15, 16, 22) */
  color: #ffffff; /* #fff */
  /* hover/focus highlight in primary */
  /* sizes */
  /* default */
}
.xk-btn:hover, .xk-btn:focus-visible {
  background: rgba(255, 181, 0, 0.5);
  color: #000;
  border-color: rgba(255, 181, 0, 0.5);
  outline: none;
}
.xk-btn:disabled, .xk-btn[aria-disabled=true] {
  opacity: 0.6;
  cursor: not-allowed;
}
.xk-btn--sm {
  padding: 0.6rem 0.9rem;
  font-size: 1.2rem;
}
.xk-btn--md {
  padding: 0.9rem 1.2rem;
  font-size: 1.4rem;
}
.xk-btn--lg {
  padding: 1.1rem 1.6rem;
  font-size: 1.6rem;
  border-radius: 0.9rem;
}

/* invert (white button) */
.xk-btn--invert {
  background: #ffffff; /* white */
  color: #000;
  border-color: transparent;
}
.xk-btn--invert:hover, .xk-btn--invert:focus-visible {
  background: rgb(255, 181, 0); /* gold */
  color: #000;
  border-color: rgb(255, 181, 0);
}

/* Optional minimal variant: ghost (transparent with white border) */
.xk-btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}
.xk-btn--ghost:hover, .xk-btn--ghost:focus-visible {
  color: #000;
  background: rgb(255, 181, 0);
  border-color: rgb(255, 181, 0);
}

/* Editor canvas tweak */
.editor-styles-wrapper .xk-btn {
  line-height: 1;
}

.xk-btn--white {
  background: #fff;
  color: #111;
}

.xk-btn--gold {
  background: #ffb500;
  color: #111;
}

.xk-btn--grey {
  background: #56575f;
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
