/* Jolanda Kieneker-Drewes — Portfolio styles (prototype + WordPress theme) */

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

html, body { margin: 0; padding: 0; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --jk-bg: #f5f0ea;
  --jk-bg-alt: #efe6da;
  --jk-bg-card: #fbf8f3;
  --jk-ink: #2b2620;
  --jk-ink-soft: #5f5547;
  --jk-muted: #8a7d6d;
  --jk-border: #e6dccd;
  --jk-border-soft: #e3d8c8;
  --jk-dark: #2d3a31;
  --jk-dark-footer: #26221d;
  --jk-accent: #b15c3c;
  --jk-font-body: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --jk-font-display: 'Cormorant Garamond', Georgia, serif;
  --jk-container: 1240px;
  --jk-nav-height: 72px;
  --jk-z-nav-panel: 100;
  --jk-z-header: 110;
  --jk-z-lightbox: 200;
  --jk-z-skip: 210;
}

::selection { background: #e7c9b9; }

input, textarea, select, button { font-family: inherit; }

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--jk-accent) !important;
}

button:focus-visible,
a:focus-visible:not(.jk-brand) {
  outline: 2px solid var(--jk-accent);
  outline-offset: 3px;
}

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

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

/* Layout */
.jk-site {
  min-height: 100vh;
  background: var(--jk-bg);
  color: var(--jk-ink);
  font-family: var(--jk-font-body);
  font-size: 16px;
  line-height: 1.6;
}

.jk-container {
  max-width: var(--jk-container);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 56px);
  padding-right: clamp(20px, 5vw, 56px);
}

.jk-container--narrow { max-width: 920px; }
.jk-container--werk { max-width: 1320px; }

.jk-section-pad {
  padding-top: clamp(48px, 7vw, 104px);
  padding-bottom: clamp(40px, 5vw, 72px);
}

.jk-section-pad--lg {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.jk-section--alt {
  background: var(--jk-bg-alt);
  border-top: 1px solid var(--jk-border);
  border-bottom: 1px solid var(--jk-border);
}

.jk-section--dark {
  background: var(--jk-dark);
  color: #f1ece2;
}

/* Typography */
.jk-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jk-accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.jk-eyebrow--lg { margin-bottom: 20px; }

.jk-display {
  font-family: var(--jk-font-display);
  font-weight: 500;
  color: #262019;
  line-height: 1.05;
  margin: 0;
}

.jk-display--hero {
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}

.jk-display--section {
  font-size: clamp(28px, 3.4vw, 46px);
}

.jk-display--page {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
  margin-bottom: 18px;
}

.jk-lead {
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.66;
  color: var(--jk-ink-soft);
  margin: 0 0 28px;
}

.jk-body { color: var(--jk-ink-soft); font-size: 16.5px; line-height: 1.7; margin: 0 0 18px; }

.jk-quote {
  font-family: var(--jk-font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
  color: var(--jk-dark);
  margin: 0 0 40px;
  text-align: center;
}

/* Buttons */
.jk-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s, border-color 0.2s, color 0.2s;
}

.jk-btn--primary {
  background: var(--jk-accent);
  color: #fff;
}

.jk-btn--primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

.jk-btn--outline {
  background: transparent;
  color: var(--jk-ink);
  border: 1px solid #d3c7b7;
}

.jk-btn--outline:hover {
  border-color: var(--jk-accent);
  color: var(--jk-accent);
}

.jk-btn--nav {
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jk-btn--full { width: 100%; justify-content: center; }

.jk-btn--ghost {
  background: none;
  border: none;
  padding: 8px 0;
  color: var(--jk-accent);
}

.jk-btn--ghost:hover { opacity: 0.7; }

.jk-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.jk-btn-row--center { justify-content: center; }

/* Header / Nav */
.jk-site-header {
  position: sticky;
  top: 0;
  z-index: var(--jk-z-header);
  isolation: isolate;
  background: rgba(245, 240, 234, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--jk-border);
}

.jk-header-shell {
  padding: 14px clamp(20px, 5vw, 56px);
}

.jk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.jk-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  line-height: 1.05;
  flex-shrink: 0;
  text-decoration: none !important;
  color: inherit;
}

.jk-brand:hover,
.jk-brand:focus,
.jk-brand:focus-visible,
.jk-brand:active,
.jk-brand:visited {
  text-decoration: none !important;
  color: inherit;
}

.jk-brand:focus-visible {
  outline: 2px solid var(--jk-accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.jk-brand__name {
  display: block;
  font-family: var(--jk-font-display);
  font-size: clamp(19px, 3vw, 23px);
  font-weight: 600;
  color: var(--jk-ink);
  letter-spacing: 0.01em;
  text-decoration: none !important;
}

.jk-brand__tag {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9a8d7d;
  font-weight: 600;
  margin-top: 3px;
  text-decoration: none !important;
}

.jk-nav {
  margin-left: auto;
  flex-shrink: 0;
}

.jk-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid #d3c7b7;
  border-radius: 2px;
  cursor: pointer;
  color: var(--jk-ink);
  position: relative;
  z-index: 1;
}

.jk-nav__toggle-icon {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.jk-nav__toggle-icon::before,
.jk-nav__toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s;
}

.jk-nav__toggle-icon::before { top: -6px; }
.jk-nav__toggle-icon::after { top: 6px; }

.jk-nav__toggle[aria-expanded="true"] .jk-nav__toggle-icon { background: transparent; }
.jk-nav__toggle[aria-expanded="true"] .jk-nav__toggle-icon::before { top: 0; transform: rotate(45deg); }
.jk-nav__toggle[aria-expanded="true"] .jk-nav__toggle-icon::after { top: 0; transform: rotate(-45deg); }

.jk-nav__panel {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
}

.jk-nav__panel .menu,
.jk-nav__panel .jk-nav__menu,
.jk-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.jk-nav__panel .menu li,
.jk-nav__panel .jk-nav__menu li {
  margin: 0;
  padding: 0;
}

.jk-nav__panel .menu a,
.jk-nav__link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 10px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--jk-ink);
}

.jk-nav__cta { white-space: nowrap; }

/* Hero */
.jk-hero {
  display: flex;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  flex-wrap: wrap;
}

.jk-hero__content {
  flex: 1 1 320px;
  animation: jkFadeUp 0.8s ease both;
}

.jk-hero__media {
  flex: 1 1 300px;
  animation: jkFadeUp 0.9s 0.1s ease both;
  display: flex;
  justify-content: center;
}

.jk-figure {
  margin: 0;
  position: relative;
  max-width: 460px;
  width: 100%;
}

.jk-figure__frame {
  position: absolute;
  inset: -14px;
  background: #ece2d4;
  border-radius: 3px;
  transform: rotate(-1.4deg);
  z-index: 0;
}

.jk-figure__frame--right { transform: rotate(1.4deg); }

.jk-figure__img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 2px;
  box-shadow: 0 26px 60px -20px rgba(60, 44, 30, 0.5);
}

.jk-figure__caption {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #9a8d7d;
  font-style: italic;
  font-family: var(--jk-font-display);
}

.jk-meta-line {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--jk-border-soft);
  font-size: 13.5px;
  color: var(--jk-muted);
  letter-spacing: 0.01em;
}

/* Grids */
.jk-split-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.jk-grid {
  display: grid;
  gap: clamp(14px, 1.8vw, 26px);
}

.jk-grid--featured {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

.jk-grid--testimonials {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 24px;
}

.jk-grid--inmem {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(16px, 2vw, 28px);
  max-width: 760px;
  margin: 0 auto;
}

.jk-grid--contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

/* Work cards */
.jk-work-card {
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
  background: #ddd2c4;
  box-shadow: 0 14px 34px -18px rgba(60, 44, 30, 0.5);
}

.jk-work-card__img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.jk-work-card:hover .jk-work-card__img { transform: scale(1.05); }

.jk-work-card__img--fixed { height: clamp(220px, 40vw, 300px); object-fit: cover; }
.jk-work-card__img--tall { height: clamp(260px, 45vw, 340px); object-fit: cover; }

.jk-work-card__cap {
  padding: 13px 16px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #7a6e5e;
  background: var(--jk-bg-card);
}

/* Gallery (werk page) — 3-column masonry (avoids grid row stretch gaps) */
.jk-gallery {
  column-count: 3;
  column-gap: clamp(14px, 1.6vw, 22px);
}

.jk-gallery__item {
  margin: 0 0 clamp(14px, 1.6vw, 22px);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.jk-gallery .jk-work-card {
  display: block;
  line-height: 0;
  height: auto;
  background: transparent;
}

.jk-gallery .jk-work-card__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: initial;
  background: #ddd2c4;
}

.jk-gallery .jk-work-card__cap {
  display: block;
  line-height: normal;
}

/* Filters */
.jk-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(30px, 3.5vw, 46px);
}

.jk-filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}

/* Testimonials */
.jk-testimonial {
  margin: 0;
  background: var(--jk-bg-card);
  border: 1px solid #ece1d2;
  border-radius: 3px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}

.jk-testimonial__mark {
  font-family: var(--jk-font-display);
  font-size: 46px;
  line-height: 0;
  color: var(--jk-accent);
  height: 26px;
}

.jk-testimonial__quote {
  font-family: var(--jk-font-display);
  font-size: clamp(18px, 2.5vw, 21px);
  line-height: 1.42;
  color: #3a332b;
  margin: 0 0 22px;
  font-style: italic;
}

.jk-testimonial__who {
  margin-top: auto;
  font-size: 13px;
  color: var(--jk-muted);
  letter-spacing: 0.03em;
  font-weight: 600;
}

/* About */
.jk-about {
  display: flex;
  gap: clamp(34px, 5vw, 76px);
  align-items: flex-start;
  flex-wrap: wrap;
}

.jk-about__media {
  flex: 0 1 400px;
  max-width: 100%;
}

.jk-about .jk-figure {
  max-width: 400px;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 22px 50px -22px rgba(60, 44, 30, 0.5);
}

.jk-about .jk-figure__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: none;
}

.jk-about__content { flex: 1 1 320px; }

.jk-signature {
  font-family: var(--jk-font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 26px);
  color: var(--jk-ink);
}

/* News */
.jk-news-list > .jk-news-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.jk-news-section {
  font-family: var(--jk-font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: #262019;
  margin: clamp(36px, 4vw, 52px) 0 0;
  padding-top: clamp(26px, 3vw, 38px);
  border-top: 1px solid var(--jk-border-soft);
}

.jk-news-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.jk-news-year {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jk-muted);
  font-weight: 700;
  margin: clamp(28px, 3vw, 40px) 0 0;
  padding-top: clamp(20px, 2vw, 28px);
  border-top: 1px solid var(--jk-border-soft);
}

.jk-news-item {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(26px, 3vw, 38px) 0;
  border-top: 1px solid var(--jk-border-soft);
  flex-wrap: wrap;
  align-items: flex-start;
}

.jk-news-item__date {
  flex: 0 0 auto;
  width: 130px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jk-accent);
  font-weight: 700;
  padding-top: 5px;
}

.jk-news-item__body { flex: 1 1 240px; }

.jk-news-item__title {
  font-family: var(--jk-font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 30px);
  margin: 0 0 12px;
  line-height: 1.15;
  color: #262019;
}

.jk-news-item__title a {
  color: inherit;
  text-decoration: none;
}

.jk-news-item__title a:hover {
  color: var(--jk-accent);
}

.jk-news-item__excerpt {
  font-size: 16px;
  margin-bottom: 0;
}

.jk-news-item__excerpt p {
  margin: 0 0 0.75em;
}

.jk-news-item__excerpt p:last-child {
  margin-bottom: 0;
}

.jk-news-item__excerpt a {
  color: var(--jk-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jk-news-single__content a {
  color: var(--jk-accent);
}

.jk-news-cta {
  margin-top: clamp(44px, 5vw, 68px);
  background: var(--jk-bg-alt);
  border: 1px solid var(--jk-border);
  border-radius: 3px;
  padding: clamp(30px, 4vw, 46px);
  text-align: center;
}

/* Contact */
.jk-steps { display: flex; flex-direction: column; gap: 18px; margin-bottom: 38px; }

.jk-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.jk-step__num {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--jk-accent);
  color: var(--jk-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--jk-font-display);
  font-size: 19px;
  font-weight: 600;
}

.jk-step__title {
  font-weight: 700;
  font-size: 15.5px;
  color: var(--jk-ink);
  margin-bottom: 3px;
}

.jk-step__body {
  color: #6b6053;
  font-size: 14.5px;
  line-height: 1.55;
}

.jk-contact-details {
  border-top: 1px solid var(--jk-border-soft);
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 15px;
  color: #4a4135;
}

.jk-contact-details a {
  color: #4a4135;
  text-decoration: none;
  font-weight: 600;
}

.jk-contact-details a:hover { color: var(--jk-accent); }

.jk-form-card {
  background: var(--jk-bg-card);
  border: 1px solid #ece1d2;
  border-radius: 4px;
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 24px 56px -30px rgba(60, 44, 30, 0.4);
  position: sticky;
  top: calc(var(--jk-nav-height) + 16px);
}

.jk-form__title {
  font-family: var(--jk-font-display);
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 6px;
  color: #262019;
}

.jk-form__hint {
  color: var(--jk-muted);
  font-size: 13.5px;
  margin: 0 0 26px;
}

.jk-field { margin-bottom: 18px; }

.jk-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #4a4135;
  margin-bottom: 7px;
}

.jk-input {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #ddd0bf;
  border-radius: 2px;
  background: #fff;
  font-size: 15px;
  color: var(--jk-ink);
  transition: border-color 0.2s;
}

.jk-input--textarea {
  resize: vertical;
  line-height: 1.5;
  margin-bottom: 24px;
}

.jk-form-success {
  text-align: center;
  padding: 34px 8px;
}

.jk-form-success__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--jk-dark);
  color: #f1ece2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
}

/* Contact Form 7 */
.jk-form-card .wpcf7 {
  margin: 0;
}

.jk-form-card .hidden-fields-container {
  display: none !important;
  visibility: hidden !important;
}

.jk-form-card .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.jk-form-card .wpcf7-form > p {
  margin: 0;
}

.jk-form-card .wpcf7-form-control-wrap {
  display: block;
}

.jk-form-card .wpcf7-form input[type="submit"] {
  margin-top: 4px;
  cursor: pointer;
  border: none;
}

.jk-form-card .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #a94442;
  margin-top: 5px;
}

.jk-form-card .wpcf7-not-valid {
  border-color: #c88 !important;
}

.jk-form-card .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 12px 15px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid transparent;
}

.jk-form-card .wpcf7-response-output:empty {
  display: none;
}

.jk-form-card .wpcf7 form.sent .wpcf7-response-output {
  border-color: #c8dcc8;
  background: #f4faf4;
  color: #2d4a2d;
}

.jk-form-card .wpcf7 form.invalid .wpcf7-response-output,
.jk-form-card .wpcf7 form.unaccepted .wpcf7-response-output,
.jk-form-card .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #e8cfc8;
  background: #fdf6f4;
  color: #6b3a2e;
}

.jk-form-card .wpcf7-spinner {
  margin-left: 10px;
  vertical-align: middle;
}

/* Footer */
.jk-footer {
  background: var(--jk-dark-footer);
  color: #cdc4b7;
}

.jk-footer__main {
  max-width: var(--jk-container);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 76px) clamp(20px, 5vw, 56px) clamp(28px, 3vw, 40px);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.jk-footer__brand { flex: 1 1 240px; }

.jk-footer__name {
  font-family: var(--jk-font-display);
  font-size: 25px;
  font-weight: 600;
  color: #f3ede4;
}

.jk-footer__tag {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8f8475;
  margin-top: 6px;
  margin-bottom: 18px;
}

.jk-footer__cols {
  flex: 0 1 auto;
  display: flex;
  gap: clamp(32px, 6vw, 90px);
  flex-wrap: wrap;
}

.jk-footer__heading {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8f8475;
  margin-bottom: 16px;
  font-weight: 600;
}

.jk-footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.jk-footer__links .menu,
.jk-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.jk-footer__links .menu li,
.jk-footer__menu li {
  margin: 0;
  padding: 0;
}

.jk-footer__link,
.jk-footer__links a {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  color: #cdc4b7;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.jk-footer__link:hover,
.jk-footer__links a:hover { color: #fff; }

.jk-footer__bar {
  border-top: 1px solid #3a352e;
}

.jk-footer__bar-inner {
  max-width: var(--jk-container);
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 56px);
  font-size: 12.5px;
  color: #7d7264;
}

/* Lightbox */
.jk-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--jk-z-lightbox);
  background: rgba(28, 22, 16, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 64px);
  animation: jkFade 0.25s ease both;
  cursor: zoom-out;
}

.jk-lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(900px, 100%);
  max-width: 100%;
  cursor: default;
  touch-action: pan-y pinch-zoom;
}

.jk-lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.jk-lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  border-radius: 2px;
  user-select: none;
  -webkit-user-drag: none;
}

.jk-lightbox__cap {
  margin-top: 18px;
  color: #d8cfc2;
  font-family: var(--jk-font-display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-align: center;
}

.jk-lightbox__cap[hidden] {
  display: none;
}

.jk-lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.jk-lightbox__close:hover { background: rgba(255, 255, 255, 0.24); }

.jk-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.jk-lightbox__nav:hover { background: rgba(255, 255, 255, 0.24); }

.jk-lightbox__nav--prev { left: clamp(8px, 2vw, 24px); }

.jk-lightbox__nav--next { right: clamp(8px, 2vw, 24px); }

.jk-lightbox__nav[hidden] {
  display: none;
}

@media (max-width: 600px) {
  .jk-lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
}

.jk-page-enter { animation: jkFade 0.5s ease both; }

.jk-text-center { text-align: center; }

.jk-link-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f1ece2;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(241, 236, 226, 0.35);
  padding-bottom: 3px;
}

.jk-link-phone:hover { border-color: #f1ece2; }

/* Skip link */
.jk-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.jk-skip:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 20px;
  background: var(--jk-accent);
  color: #fff;
  z-index: var(--jk-z-skip);
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (min-width: 901px) {
  .jk-site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(14px, 2.4vw, 34px);
    padding: 14px clamp(20px, 5vw, 56px);
  }

  .jk-header-shell {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .jk-site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(245, 240, 234, 0.98);
  }

  .jk-nav__toggle { display: flex; }

  .jk-nav__panel {
    position: fixed;
    inset: 0;
    top: var(--jk-nav-height);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(245, 240, 234, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px clamp(20px, 5vw, 56px) 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: var(--jk-z-nav-panel);
    visibility: hidden;
    pointer-events: none;
  }

  .jk-nav__panel--open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .jk-nav__panel .menu,
  .jk-nav__panel .jk-nav__menu,
  .jk-nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .jk-nav__panel .menu a,
  .jk-nav__link {
    font-size: 15px;
    padding: 16px 0;
    border-bottom: 1px solid var(--jk-border-soft);
    width: 100%;
    justify-content: flex-start;
  }

  .jk-nav__cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }

  .jk-form-card {
    position: static;
    top: auto;
  }

  .jk-gallery {
    column-count: 2;
  }

  .jk-news-item__date {
    width: 100%;
    padding-top: 0;
  }

  .jk-split-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .jk-hero-section {
    padding-top: clamp(16px, 3vw, 28px);
    padding-bottom: clamp(32px, 5vw, 56px);
  }

  .jk-hero-section .jk-hero {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(28px, 5vw, 40px);
  }

  .jk-hero-section .jk-hero__content {
    order: 1;
  }

  .jk-hero-section .jk-hero__media {
    order: 0;
    width: calc(100% + 2 * clamp(20px, 5vw, 56px));
    margin-inline: calc(-1 * clamp(20px, 5vw, 56px));
    justify-content: stretch;
  }

  .jk-hero-section .jk-figure {
    max-width: none;
    width: 100%;
  }

  .jk-hero-section .jk-figure__frame {
    display: none;
  }

  .jk-hero-section .jk-figure__img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .jk-hero-section .jk-figure__caption {
    padding-inline: clamp(20px, 5vw, 56px);
    margin-top: 12px;
    font-size: 15px;
  }
}

body.jk-nav-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  :root { --jk-nav-height: 64px; }

  .jk-about { flex-direction: column-reverse; }

  .jk-footer__cols {
    width: 100%;
    flex-direction: column;
    gap: 32px;
  }

  .jk-btn-row .jk-btn {
    width: 100%;
    justify-content: center;
  }

  .jk-gallery {
    column-count: 1;
  }

  .jk-meta-line {
    font-size: 12.5px;
    line-height: 1.5;
  }
}

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