/* ==========================================================================
   HARK THEME  —  hark.css
   Warm, hand-made aesthetic. Three typefaces:
     Newsreader      → serif headings
     Hanken Grotesk  → body text
     Shantell Sans   → hand-drawn accents (logo, eyebrows, notes)
   Colour tokens are defined once in :root below — change them in one place.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --cream: #F4EDD8;
  /* page background */
  --cream-2: #EFE6CC;
  /* soft panels */
  --paper: #FBF7EA;
  /* polaroids, cards */
  --ink: #34301F;
  /* body text */
  --green-deep: #2E441F;
  /* darkest green, headings */
  --green: #4A6B33;
  /* primary green */
  --green-darker: #23371A;
  --sage: #C7D6B0;
  --sage-light: #D4E4C0;
  --sage-soft: #A7C18B;
  --mustard: #F2DE8C;
  --amber: #E7C24A;
  --tan: #C7A85E;
  --pink: #F2D6DD;
  --pink-2: #F2C9D8;
  --pink-ink: #B14E70;
  --brown: #3A2817;
  /* footer */
  --line: rgba(58, 40, 22, 0.12);
}

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

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

::selection {
  background: var(--amber);
  color: var(--green-deep);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* film grain overlay */
.hark-grain {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.45;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
}

/* ==========================================================================
   NAV
   ========================================================================== */
.hark-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}

.hark-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--cream);
  font-family: 'Sour Gummy', cursive;
  font-weight: 700;
  font-size: 23px;
  line-height: 1;
  padding: 6px 15px 9px;
  border-radius: 13px 12px 11px 14px;
  transform: rotate(-2deg);
  box-shadow: 0 8px 16px -10px rgba(46, 68, 31, 0.7);
}

.event-side .hark-btn--green {
  display: none;
}

.hark-navlinks {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 44px);
  font-family: 'Shantell Sans', cursive;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.hark-navlinks a {
  color: #5A5238;
  padding: 6px 2px;
  transition: color .2s;
}

.hark-navlinks a.is-active {
  color: var(--green-deep);
  font-weight: 700;
}

.hark-navlinks a:hover {
  color: var(--green-deep);
}

.hark-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--cream);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
}

.hark-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: 'Shantell Sans', cursive;
  font-size: 30px;
  color: var(--mustard);
}

.hark-mobile-menu[hidden] {
  display: none;
}

.hark-mobile-menu a.is-active {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hark-mobile-menu button {
  margin-top: 18px;
  background: none;
  border: 1.5px solid var(--amber);
  color: var(--amber);
  padding: 10px 20px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 18px;
  cursor: pointer;
}

/* ==========================================================================
   TYPOGRAPHY HELPERS
   ========================================================================== */
.h-serif {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: pretty;
}

.h-serif--hero {
  font-size: clamp(44px, 8vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.h-serif--hero p {
  margin-top: 3rem;
  margin-bottom: 3rem;
}


.h-serif--xl {
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 1.12;
}

.h-serif--lg {
  font-size: clamp(26px, 3.6vw, 46px);
}

.h-serif--md {
  font-size: clamp(26px, 3.4vw, 42px);
}

.h-serif--sm {
  font-size: clamp(19px, 2.2vw, 26px);
}

.h-serif--cream {
  color: var(--cream);
}

.h-serif--italic {
  font-style: italic;
}

.h-serif--muted {
  color: #8A8266;
}

.h-serif em,
.lead em {
  font-style: italic;
  color: var(--green);
}

.h-serif--cream em {
  color: var(--amber);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-family: 'Shantell Sans', cursive;
  font-size: 17px;
  color: #7A6A3A;
}

.eyebrow--amber {
  color: var(--amber);
}

.eyebrow--dark {
  color: #3A5524;
}

.eyebrow--center {
  display: inline-flex;
  justify-content: center;
}

.eyebrow-line {
  width: 34px;
  height: 1.5px;
  background: #B59B4E;
  display: inline-block;
}

.eyebrow-line--amber {
  background: var(--amber);
}

.lead {
  font-size: 18px;
  line-height: 1.62;
  color: #4A4334;
  margin: 24px 0 0;
  max-width: 580px;
}

.lead--cream {
  color: #D8D0B8;
}

.lead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hark-prose {
  font-size: 17.5px;
  line-height: 1.64;
  color: #4A4334;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hark-prose p {
  margin: 0;
}

.hark-prose--lg {
  font-size: 18px;
  line-height: 1.66;
  gap: 18px;
}

.hark-prose strong {
  font-weight: 600;
  color: var(--green-deep);
}

/* Editor "Quote" (CKEditor blockQuote) — a bare element selector so it's
   styled wherever an editor drops one in rich text: event/page body,
   hark_card bodies, notes, etc. — not just inside .hark-prose. */
blockquote {
  position: relative;
  margin: 6px 0;
  padding: 18px 26px 18px 32px;
  background: var(--cream-2);
  border-left: 3px solid var(--tan);
  border-radius: 4px 12px 12px 4px;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 1.12em;
  line-height: 1.55;
  color: var(--green-deep);
  text-wrap: pretty;
}

blockquote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 10px;
  font-family: 'Newsreader', serif;
  font-style: normal;
  font-size: 2.6em;
  line-height: 1;
  color: var(--tan);
  opacity: 0.55;
}

blockquote p {
  margin: 0 0 8px;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-family: 'Shantell Sans', cursive;
  font-style: normal;
  font-size: 0.62em;
  color: #7A6A3A;
}

blockquote cite::before {
  content: '\2014\00A0';
}

/* on the dark footer, swap in colours that still read */
.hark-footer blockquote {
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  border-left-color: var(--amber);
}

.hark-footer blockquote::before,
.hark-footer blockquote cite {
  color: var(--amber);
}

/* ---- rich-text elements — everything else the editor toolbar can insert:
   headings, links, lists, definition lists, inline/block code, tables, hr,
   sup/sub and (aligned/captioned) images. Bare element selectors so they're
   styled wherever body content ends up (.hark-prose, .bento-body,
   .note-body, .value-body, .principle-body) without listing every wrapper —
   every one of these tags is otherwise only ever produced by the editor;
   the theme's own headings/lists/figures all carry their own classes,
   which win on specificity. -------------------------------------------- */
h2, h3, h4, h5, h6 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.22;
  margin: 1em 0 0.5em;
  text-wrap: pretty;
}

h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h2 { font-size: 1.7em; }
h3 { font-size: 1.4em; }
h4 { font-size: 1.2em; }
h5 { font-size: 1.05em; }

h6 {
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7A6A3A;
}

.hark-prose a,
.bento-body a,
.note-body a,
.value-body a,
.principle-body a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(74, 107, 51, 0.4);
  text-underline-offset: 3px;
  transition: color .2s, text-decoration-color .2s;
}

.hark-prose a:hover,
.bento-body a:hover,
.note-body a:hover,
.value-body a:hover,
.principle-body a:hover {
  color: var(--green-deep);
  text-decoration-color: currentColor;
}

ul, ol {
  margin: 0.8em 0;
  padding-left: 1.25em;
}

ul { list-style: disc; }
ul ul { list-style: circle; }
ol { list-style: decimal; }

ul::marker, ol::marker {
  color: var(--tan);
}

li + li {
  margin-top: 6px;
}

dl {
  margin: 0.8em 0;
}

dt {
  font-weight: 600;
  color: var(--green-deep);
}

dd {
  margin: 0 0 10px;
}

code {
  font-family: ui-monospace, 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.88em;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.15em 0.4em;
}

pre {
  margin: 0.8em 0;
  padding: 16px 18px;
  background: var(--brown);
  color: #EDE3CB;
  border-radius: 10px;
  overflow-x: auto;
}

pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: 0.88em;
  line-height: 1.5;
}

hr {
  margin: 30px 0;
  border: none;
  border-top: 1px dashed var(--tan);
}

table {
  width: 100%;
  margin: 0.8em 0;
  border-collapse: collapse;
  font-size: 0.92em;
}

th, td {
  padding: 10px 14px;
  border: 1px solid var(--line);
  text-align: left;
}

th {
  background: var(--cream-2);
  color: var(--green-deep);
  font-weight: 600;
}

tbody tr:nth-child(even) {
  background: rgba(199, 168, 94, 0.08);
}

sup, sub {
  font-size: 0.72em;
}

figure {
  margin: 20px 0;
}

figure img {
  border-radius: 4px;
  display: block;
}

figcaption {
  margin-top: 8px;
  font-family: 'Shantell Sans', cursive;
  font-size: 0.8em;
  color: #7A6A3A;
  text-align: center;
}

img.align-left, figure.align-left {
  float: left;
  margin: 6px 24px 16px 0;
  max-width: 45%;
}

img.align-right, figure.align-right {
  float: right;
  margin: 6px 0 16px 24px;
  max-width: 45%;
}

img.align-center, figure.align-center {
  display: block;
  margin: 20px auto;
}

/* .hark-prose is a flex column that already zeroes out <p> margins in
   favour of a consistent gap between children — match that rhythm for the
   other block elements above instead of stacking their own margin on top. */
.hark-prose h2, .hark-prose h3, .hark-prose h4, .hark-prose h5, .hark-prose h6,
.hark-prose ul, .hark-prose ol, .hark-prose dl, .hark-prose table, .hark-prose pre {
  margin-top: 0;
  margin-bottom: 0;
}

.flower-bullet {
  color: var(--green);
}

/* ==========================================================================
   BUTTONS / LINKS / BADGES
   ========================================================================== */
.hark-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Shantell Sans', cursive;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 13px 14px 11px 13px;
  cursor: pointer;
  border: none;
  transition: transform .12s;
}

.hark-btn:active {
  transform: scale(0.97);
}

.hark-btn--green {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 16px 28px -16px rgba(46, 68, 31, 0.8);
}

.hark-btn--amber {
  background: var(--amber);
  color: var(--green-deep);
}

.hark-btn--tan {
  background: var(--tan);
  color: #3A2E12;
  box-shadow: 0 16px 28px -16px rgba(58, 40, 22, 0.6);
}

.hark-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(58, 85, 36, 0.4);
  color: var(--green-deep);
}

.hark-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.ico {
  width: 18px;
  height: 18px;
}

.hark-link-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Shantell Sans', cursive;
  font-weight: 600;
  font-size: 16px;
  color: var(--amber);
  border-bottom: 1.5px solid rgba(231, 194, 74, 0.4);
  padding-bottom: 3px;
}

.hark-link-green {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Shantell Sans', cursive;
  font-weight: 600;
  font-size: 16px;
  color: var(--green);
}

.hark-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Shantell Sans', cursive;
  font-size: 16px;
  color: #7A6A3A;
  margin-bottom: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Shantell Sans', cursive;
  font-weight: 600;
  font-size: 13px;
  padding: 5px 13px;
  border-radius: 20px;
}

.badge--dark {
  background: var(--green-deep);
  color: var(--amber);
}

.badge--amber {
  background: var(--amber);
  color: var(--green-deep);
}

.badge--green {
  background: var(--sage-soft);
  color: var(--green-darker);
  margin-bottom: 1rem;
}

.badge--grey {
  background: #D7CBAE;
  color: #5A5238;
}

.badge--red {
  background: #D98A6A;
  color: #3A1810;
}

/* ==========================================================================
   LAYOUT PRIMITIVES
   ========================================================================== */
.hark-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(22px, 5vw, 72px);
  padding-right: clamp(22px, 5vw, 72px);
}

.hark-main {
  display: block;
}

.hark-page {
  position: relative;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
}

.two-col--center {
  align-items: center;
}

.two-col--top {
  align-items: start;
}

.two-col--body {
  grid-template-columns: 1.25fr 0.75fr;
  align-items: start;
}

.hark-band {
  padding: clamp(70px, 11vh, 140px) clamp(22px, 5vw, 72px);
}

.hark-band--sage {
  background: var(--sage);
}

.hark-band--cream2 {
  background: var(--cream-2);
}

/* clip-reveal image boxes (JS animates the clip-path) */
.clipbox {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 34px 60px -38px rgba(58, 40, 22, 0.55);
}

.clipbox img {
  width: 100%;
  display: block;
}

.clipbox--tilt-l {
  transform: rotate(-2deg);
}

.clipbox--tilt-r {
  transform: rotate(2deg);
}

.placeholder {
  background: repeating-linear-gradient(135deg, #E4DBC2 0 12px, #EDE6CF 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder span {
  font-family: monospace;
  font-size: 13px;
  color: #9A8F74;
  letter-spacing: 0.08em;
}

.placeholder--wide {
  aspect-ratio: 16/7;
}

/* colour tones (shared by cards, dates, badges' parents) */
.tone--sage {
  background: var(--sage-light);
  color: var(--green-darker);
}

.tone--mustard {
  background: var(--mustard);
  color: #5A4E22;
}

.tone--pink {
  background: var(--pink);
  color: #6A4250;
}

.tone--cream {
  background: var(--cream-2);
  color: #4A5239;
}

.tone--green {
  background: var(--green);
  color: var(--cream);
}

.tone--amber {
  background: var(--amber);
  color: var(--green-deep);
}

.tone--red {
  background: #E7C9A8;
  color: #5A4A1E;
}

.tone--grey {
  background: #E7D8AE;
  color: #7A6A3A;
}

/* decorative images */
.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.deco img {
  width: 100%;
  display: block;
}

/* ==========================================================================
   POLAROIDS + TAPE
   ========================================================================== */
.polaroid {
  position: relative;
  background: var(--paper);
  padding: 12px 12px 40px;
  box-shadow: 0 30px 50px -26px rgba(58, 40, 22, 0.55);
  border-radius: 2px;
  transform: rotate(var(--rot, 0deg));
}

.polaroid img {
  width: 100%;
  display: block;
  border-radius: 1px;
}

.polaroid-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  text-align: center;
  font-family: 'Shantell Sans', cursive;
  font-size: 15px;
  color: #5C5446;
}

.polaroid--tl {
  transform: rotate(-5deg);
}

.polaroid--br {
  transform: rotate(4deg);
}

.polaroid--mini {
  padding: 12px 12px 14px;
  border-radius: 4px;
}

.polaroid--mini img {
  aspect-ratio: 4/3.4;
  object-fit: cover;
}

.polaroid--figure {
  padding: 12px 12px 14px;
  margin: 0;
}

.polaroid--figure img {
  object-fit: cover;
  border-radius: 2px;
  max-height: 13rem;
}

.polaroid--figure figcaption {
  margin-top: 10px;
  font-family: 'Shantell Sans', cursive;
  font-size: 14px;
  color: #5C5446;
  text-align: center;
}

.polaroid-flower {
  position: absolute;
  width: 74px;
  filter: drop-shadow(0 10px 12px rgba(58, 40, 22, 0.25));
  height: 5rem;
  width: auto !important;
}

.polaroid-flower--tl {
  top: -34px;
  left: -28px;
}

.polaroid-flower--br {
  top: -34px;
  right: -26px;
}

.tape {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 84px;
  height: 26px;
  background: rgba(241, 241, 230, 0.7);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tape--center {
  left: 50%;
}

.tape--note {
  top: -15px;
  width: 96px;
  height: 28px;
  background: rgba(221, 205, 150, 0.6);
  transform: translateX(-50%) rotate(-2deg);
}

.tape--form {
  left: 28px;
  transform: rotate(-3deg);
  width: 120px;
  height: 30px;
  background: rgba(231, 194, 74, 0.5);
}

/* ==========================================================================
   HOME — HERO
   ========================================================================== */
.hark-hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(70px, 9vh, 120px) clamp(16px, 4vw, 40px) 60px;
}

.hark-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hark-hero-mountains {
  position: absolute;
  left: 50%;
  width: min(1900px, 165%);
  transform: translateX(-50%);
  opacity: 0.6;
}

.hark-hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, var(--cream), rgba(244, 237, 216, 0));
}

.hark-hero-center {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
}

.hark-hero-note-wrap {
  position: relative;
  margin-bottom: 26px;
}

.hark-hero-note {
  font-family: 'Sour Gummy', cursive;
  font-weight: 700;
  font-size: clamp(76px, 12vw, 150px);
  line-height: 0.92;
  color: var(--green);
  background: var(--mustard);
  padding: 6px 38px 14px;
  border-radius: 6px 8px 5px 9px;
  transform: rotate(-1.5deg);
  box-shadow: 0 22px 36px -22px rgba(58, 40, 22, 0.5);
}

.hark-hero-chips {
  border: 1.5px solid #C9A84E;
  background: rgba(244, 237, 216, 0.7);
  border-radius: 13px 14px 12px 15px;
  padding: 0 26px;
  font-family: 'Shantell Sans', cursive;
  font-size: clamp(15px, 1.9vw, 21px);
  color: #5A5238;
}

.hark-hero-ctas {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hark-pl {
  position: absolute;
  z-index: 6;
  will-change: transform;
}

.hark-pl--tl {
  left: clamp(20px, 5vw, 90px);
  top: clamp(90px, 15vh, 150px);
  width: clamp(220px, 21vw, 310px);
}

.hark-pl--br {
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(40px, 10vh, 90px);
  width: clamp(220px, 22vw, 320px);
}

.hark-hero-sprig-left {
  left: -2.5rem;
  bottom: -15rem;
  width: 20rem;
  transform: rotate(28.4deg);
}

.hark-hero-sprig-right {
    /* .hark-about (its positioned ancestor) is capped at max-width:1080px and
       centered, so a plain -12.5rem falls short of the true screen edge on
       wide windows. Add back the gap between that box's edge and the
       viewport edge — max(0px, …) keeps this a no-op below that cap. */
    right: calc(-1.5rem - max(0px, (100vw - 1080px) / 2));
    bottom: -5rem;
    width: 20rem;
    transform: rotate(-85.4deg);
}

.hark-hero-sprig {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 14px 16px rgba(58, 40, 22, 0.18));
}

.hark-hero-cue {
  position: absolute;
  bottom: 61px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  color: #6E5A2E;
  animation: hk-bob 2.4s ease-in-out infinite;
}

@keyframes hk-bob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* HOME — ABOUT */
.hark-about {
  position: relative;
  padding-top: clamp(90px, 14vh, 180px);
  padding-bottom: clamp(90px, 14vh, 180px);
  max-width: 1080px;
}

.hark-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  margin-top: 34px;
}

.hark-beliefs {
  background: var(--cream-2);
  border: 1px solid rgba(58, 40, 22, 0.1);
  border-radius: 16px;
  padding: 28px 26px;
}

.hark-beliefs-title {
  margin: 0 0 14px;
  font-family: 'Shantell Sans', cursive;
  font-size: 18px;
  color: var(--green);
}

.hark-beliefs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: #3B4632;
}

.hark-beliefs-list li {
  display: flex;
  gap: 11px;
}

.deco--about-cow {
  bottom: 40px;
  left: -118px;
  width: clamp(112px, 12vw, 150px);
}

/* HOME — BENTO */
.hark-bento-section {
  padding: clamp(70px, 11vh, 150px) 0;
  background-color: #EFE6CC;
}

.hark-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 38px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 46px);
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 266px;
  border-radius: 16px;
  padding: 30px 28px 24px;
  box-shadow: 0 22px 42px -28px rgba(58, 40, 22, 0.4);
  transition: transform .12s;
}

.bento-card:active {
  transform: scale(0.985);
}

.bento-icon {
  display: block;
}

.bento-icon .ico {
  width: 34px;
  height: 34px;
}

.tone--sage .bento-icon {
  color: var(--green);
}

.tone--pink .bento-icon {
  color: var(--pink-ink);
}

.tone--mustard .bento-icon {
  color: #8A6E2A;
}

.bento-title {
  margin: 14px 0 9px;
  font-family: 'Shantell Sans', cursive;
  font-weight: 700;
  font-size: 25px;
}

.tone--sage .bento-title {
  color: #3A5524;
}

.tone--pink .bento-title {
  color: var(--pink-ink);
}

.tone--mustard .bento-title {
  color: #6E5A22;
}

.bento-body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.52;
}

.bento-arrow {
  margin-top: auto;
  padding-top: 18px;
  align-self: flex-end;
  font-size: 22px;
  color: var(--green);
}

.tone--mustard .bento-arrow {
  color: #8A6E2A;
}

.tone--pink .bento-arrow {
  color: var(--green);
  align-self: flex-start;
}

/* A card with its own link label (e.g. "Boek ons") reads as a real button
   instead of a plain oversized arrow. */
.bento-arrow.bento-arrow--btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-family: 'Shantell Sans', cursive;
  font-weight: 600;
  font-size: 15px;
  color: var(--cream);
  background: var(--green);
  padding: 10px 18px;
  border-radius: 13px 14px 11px 13px;
  box-shadow: 0 10px 20px -12px rgba(46, 68, 31, 0.7);
  transition: transform .12s;
  margin-top: 1rem;
}

.bento-card:active .bento-arrow--btn {
  transform: scale(0.96);
}

.bento-photo {
  align-self: start;
}

/* Pin each card + its photo to an explicit cell in the 3-col bento grid —
   both axes, not just the column — so the pair stacks vertically in its own
   lane instead of the row auto-placement scattering them unpredictably.
   Reset back to auto below, once the grid drops to fewer columns (see the
   960px breakpoint), so this doesn't force phantom extra columns/rows into
   the narrower layouts. */
.bento-col-1 {
  grid-column: 1;
}

.bento-col-2 {
  grid-column: 2;
}

.bento-col-3 {
  grid-column: 3;
}

.bento-row-1 {
  grid-row: 1;
}

.bento-row-2 {
  grid-row: 2;
}

/* HOME — AGENDA */
.hark-agenda {
  position: relative;
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(80px, 12vh, 160px) 0;
  overflow: hidden;
}

.hark-agenda-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.hark-agenda-list {}

.agenda-feature {
  display: block;
  background: var(--mustard);
  color: var(--green-deep);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 36px 64px -38px rgba(0, 0, 0, 0.6);
  margin-bottom: 22px;
}

.agenda-feature-grid {
  display: grid;
  grid-template-columns: auto 1fr 0.85fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
}

.agenda-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.agenda-date--big {
  align-self: stretch;
  padding: clamp(26px, 3vw, 44px) clamp(20px, 2.5vw, 40px);
  min-width: 128px;
  background: var(--green-deep);
}

.agenda-date-month {
  font-family: 'Shantell Sans', cursive;
  font-size: 15px;
  color: var(--amber);
}

.agenda-date-day {
  font-family: 'Newsreader', serif;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 0.95;
  color: var(--cream);
}

.agenda-feature-body {
  padding: clamp(22px, 3vw, 34px) 0;
}

.agenda-feature-body h3 {
  margin: 12px 0 8px;
}

.agenda-feature-summary {
  margin: 0 0 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: #4A4022;
  max-width: 420px;
}

.agenda-meta {
  margin: 0;
  font-size: 14px;
  color: #6B5A22;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.agenda-meta--light {
  color: #B9C5A8;
}

.agenda-feature-img {
  align-self: stretch;
  min-height: 200px;
  position: relative;
}

.agenda-feature-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agenda-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 28px) 4px;
  border-bottom: 1px solid rgba(244, 237, 216, 0.18);
}



.agenda-row .agenda-date {
  text-align: center;
  border-radius: 12px 14px 11px 13px;
  padding: 11px 15px;
  rotate: -2deg;
  min-width: 78px;
}

.agenda-date-day-sm {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 30px;
  line-height: 1;
}

.agenda-date-month-sm {
  display: block;
  font-family: 'Shantell Sans', cursive;
  font-size: 13px;
  margin-top: 2px;
}

.agenda-row-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 3px;
}

.agenda-row-arrow {
  font-family: 'Shantell Sans', cursive;
  font-size: 18px;
  color: #8AA078;
}

.deco--agenda {
  right: -1%;
  top: 6%;
  width: clamp(70px, 9vw, 140px);
  opacity: 0.85;
}

/* HOME — NOTES */
.hark-notes {
  padding: clamp(80px, 12vh, 160px) 0;
}

.hark-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(22px, 4vw, 42px);
  margin-top: 36px;
}

.note {
  position: relative;
  text-align: left;
  border: none;
  padding: 28px 24px 32px;
  border-radius: 4px;
  box-shadow: 0 20px 36px -22px rgba(58, 40, 22, 0.5);
  transform: rotate(var(--rot, -2deg));
  cursor: pointer;
}

.note-title {
  margin: 0 0 8px;
  font-family: 'Shantell Sans', cursive;
  font-weight: 700;
  font-size: 23px;
  color: var(--green-darker);
  line-height: 1.15;
}

.note-body {
  margin: 0;
  font-family: 'Shantell Sans', cursive;
  font-size: 16px;
  line-height: 1.4;
}

.tone--pink .note-title {
  color: #7A2049;
}

.tone--pink .note-body {
  color: #6A2342;
}

.hark-notes-hint {
  margin: 22px 0 0;
  font-family: 'Shantell Sans', cursive;
  font-size: 14px;
  color: #9A8F74;
}

/* ==========================================================================
   SUB-PAGES (herberg / boeren / evenementen / event / contact)
   ========================================================================== */
.hark-page--sub {
  padding-top: 0;
}

.hark-subhero {
  position: relative;
  padding-top: clamp(92px, 10vh, 120px);
  padding-bottom: clamp(30px, 5vh, 60px);
}

.hark-bigimg {
  padding-bottom: 0;
}

.hark-bigimg .clipbox {
  border-radius: 18px;
}

.hark-bigimg .clipbox img {
  aspect-ratio: 16/8;
  object-fit: cover;
}

.img-caption {
  margin: 14px 2px 0;
  font-family: 'Shantell Sans', cursive;
  font-size: 15px;
  color: #9A8F74;
}

.hark-story {
  padding: clamp(70px, 11vh, 140px) clamp(22px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

.hark-find {
  padding: clamp(70px, 11vh, 140px) clamp(22px, 5vw, 72px);
}

.deco--subhero {
  /* .hark-subhero is capped at .hark-wrap's max-width:1180px and centered,
     so a plain right offset falls short of the true screen edge on wide
     windows — same fix as .hark-hero-sprig-right below. */
  right: calc(-2rem - max(0px, (100vw - 1180px) / 2));
  top: clamp(120px, 17vh, 180px);
  width: clamp(210px, 27vw, 372px);
  transform: rotate(94deg);
}

.deco--subhero img {
  transform: rotate(180deg);
}

.deco--story {
  top: 0px;
  right: 0px;
 
}

.deco--story img {
 height: 7rem;
}

/* values / principles */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.value-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 26px;
  border: 1px solid rgba(40, 50, 25, 0.1);
}

.value-title {
  margin: 0 0 8px;
  font-family: 'Newsreader', serif;
  font-size: 26px;
  color: var(--green-deep);
}

.value-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #4A5239;
}

.value-kicker {
  font-family: 'Newsreader', serif;
  font-size: 30px;
  color: var(--sage-soft);
}

.hark-principles {
  padding: clamp(70px, 11vh, 150px) clamp(22px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  margin-top: 40px;
}

.principle-card {
  border-radius: 18px;
  padding: 30px 26px;
  border: 1px solid rgba(58, 40, 22, 0.1);
}

.principle-kicker {
  font-family: 'Newsreader', serif;
  font-size: 46px;
  line-height: 1;
  display: block;
}

.tone--cream .principle-kicker {
  color: var(--sage-soft);
}

.tone--sage .principle-kicker {
  color: var(--green);
}

.tone--mustard .principle-kicker {
  color: var(--tan);
}

.principle-title {
  margin: 8px 0;
  font-family: 'Newsreader', serif;
  font-size: 25px;
  color: var(--green-deep);
}

.principle-body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.56;
}

/* boeren green hero */
.hark-hero-green {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 17vh, 200px) clamp(22px, 5vw, 72px) clamp(50px, 8vh, 90px);
  overflow: hidden;
  background: var(--green-deep);
  color: var(--cream);
}

.hark-hero-green-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.deco--green-mtn {
  width: 100vw;
  transform: translate3d(0px, 0px, 0px);
  left: 0;
  opacity: 0.2;
}

.deco--green-mtn img {
  object-fit: cover;
}

.deco--contact-1 {
    left: -5rem;
    height: 6rem;
}

.deco--contact-2 {
    right: 2rem;
    height: 6rem;
    bottom: 0;
}

.contact-direct-person span {
  display: block;
}

.deco--green-cow {
  right: 5%;
  top: 10%;
  width: clamp(118px, 14vw, 196px);
  z-index: 1;
}

.deco--green-flower {
  left: 8%;
  bottom: 14%;
  width: clamp(64px, 8vw, 120px);
  z-index: 1;
}

/* dream band */
.hark-dream {
  text-align: center;
}

.hark-dream-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hark-dream-label {
  margin: 0 0 14px;
  font-family: 'Shantell Sans', cursive;
  font-size: 18px;
  color: #3A5524;
}

.hark-dream-quote {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: clamp(26px, 4vw, 50px);
  line-height: 1.18;
  color: var(--green-darker);
  text-wrap: pretty;
}

.hark-dream-sub {
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: #37431F;
}

/* veld / gallery grids */
.hark-veld {
  padding: clamp(40px, 7vh, 80px) clamp(22px, 5vw, 72px) clamp(70px, 11vh, 140px);
}

.veld-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
  margin-top: 26px;
}

/* ==========================================================================
   GALLERY LIGHTBOX  (evenementen photo gallery)
   ========================================================================== */
.gallery-trigger {
  all: unset;
  display: block;
  width: 100%;
  cursor: zoom-in;
}

.gallery-trigger:focus-visible {
  outline: 2px solid var(--tan);
  outline-offset: 4px;
  border-radius: 2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 60px);
  background: rgba(24, 18, 10, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  position: relative;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  min-height: clamp(200px, 45vh, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  min-width: 40px;
  min-height: 40px;
  border-radius: 2px;
  box-shadow: 0 40px 70px -30px rgba(0, 0, 0, 0.65);
  opacity: 1;
  transition: opacity 0.25s ease;
}

.lightbox.is-loading .lightbox-img {
  opacity: 0;
}

.lightbox.is-loading .lightbox-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--cream);
  animation: lightbox-spin 0.8s linear infinite;
}

@keyframes lightbox-spin {
  to { transform: rotate(360deg); }
}

.lightbox-caption {
  font-family: 'Shantell Sans', cursive;
  font-size: 15px;
  color: var(--cream);
  text-align: center;
  max-width: 60ch;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.75;
}

.lightbox-close,
.lightbox-nav {
  all: unset;
  position: absolute;
  cursor: pointer;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--mustard);
  outline-offset: 2px;
}

.lightbox-close {
  top: clamp(10px, 3vw, 26px);
  right: clamp(10px, 3vw, 26px);
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-prev {
  left: clamp(6px, 2.5vw, 24px);
}

.lightbox-next {
  right: clamp(6px, 2.5vw, 24px);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
  .lightbox-img {
    max-height: 72vh;
  }
}

/* ==========================================================================
   EVENTS overview
   ========================================================================== */
.hark-events-polaroid {
  position: absolute;
  right: -5rem;
  top: clamp(92px, 12vh, 134px);
  z-index: 1;
  pointer-events: none;
  transform: rotate(2.5deg);
}

.hark-events-polaroid img {
  display: block;
 height: 11rem;
}

.hark-feature-wrap {
  padding-bottom: clamp(50px, 7vh, 90px);
}

.hark-feature {
  display: block;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--cream);
  box-shadow: 0 40px 70px -40px rgba(58, 40, 22, 0.6);
}

.hark-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.hark-feature-body {
  padding: clamp(30px, 4vw, 56px);
}

.hark-feature-body h2 {
  margin: 18px 0 12px;
}

.hark-feature-summary {
  margin: 0 0 22px;
  font-size: 16.5px;
  line-height: 1.6;
  color: #D8D0B8;
  max-width: 440px;
}

.hark-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.meta-label {
  display: block;
  font-family: 'Shantell Sans', cursive;
  font-size: 13px;
  color: var(--amber);
}

.meta-val {
  display: block;
  margin-top: 2px;
  font-size: 16px;
  font-weight: 600;
}

.hark-feature-img {
  position: relative;
  min-height: 260px;
}

.hark-feature-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hark-eventlist {
  padding-bottom: clamp(40px, 6vh, 70px);
}

.hark-eventlist-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1.5px solid rgba(58, 40, 22, 0.16);
  padding-bottom: 14px;
  margin-bottom: 8px;
}

.hark-eventlist-year {
  font-family: 'Shantell Sans', cursive;
  font-size: 15px;
  color: #9A8F74;
}

.event-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 3vw, 42px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px) 2px;
  border-bottom: 1px solid var(--line);
}

.event-row-date {
  text-align: center;
  border-radius: 13px 12px 14px 11px;
  padding: 14px 16px;
  rotate: -2deg;
  min-width: 94px;
}

.event-row-day {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.04;
  color: var(--green-deep);
  white-space: nowrap;
}

.event-row-month {
  display: block;
  margin-top: 4px;
  font-family: 'Shantell Sans', cursive;
  font-size: 15px;
}

.event-row-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.event-row-meta {
  margin: 0 0 4px;
  font-size: 15px;
  color: #5A5238;
}

.event-row-summary {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: #4A4334;
  max-width: 520px;
}

.event-row-arrow {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid rgba(58, 85, 36, 0.4);
  color: var(--green);
  font-size: 19px;
}

.hark-pastlist {
  padding-bottom: clamp(70px, 10vh, 120px);
}

.hark-pastlist-sub {
  margin: 0 0 14px;
  font-size: 15px;
  color: #9A8F74;
}


.past-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 12px 20px;
  align-items: center;
  padding: 14px 2px;
  border-bottom: 1px solid rgba(58, 40, 22, 0.1);
}

.past-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  flex: none;
}

.past-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.past-thumb--placeholder {
  background: repeating-linear-gradient(135deg, #E4DBC2 0 6px, #EDE6CF 6px 12px);
}

.past-date {
  font-family: 'Shantell Sans', cursive;
  font-size: 15px;
  color: #9A8F74;
  min-width: 96px;
}

.past-title {
  font-family: 'Newsreader', serif;
  font-size: 20px;
  color: #4A4334;
}

.past-cta {
  justify-self: end;
  font-family: 'Shantell Sans', cursive;
  font-size: 13.5px;
  color: #7A8A5E;
  white-space: nowrap;
}

.hark-pastlist-more {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   EVENTS archive (/evenementen/voorbije-edities)
   ========================================================================== */
.hark-archief {
  padding-bottom: clamp(70px, 10vh, 120px);
}

.archief-year-group {
  margin-bottom: 44px;
}

.archief-year-group:last-child {
  margin-bottom: 0;
}

.archief-year {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--green-deep);
  margin: 0 0 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.archief-list {
  margin-top: 4px;
}

.archief-empty {
  color: #9A8F74;
  font-size: 15px;
}

/* ==========================================================================
   EVENT detail
   ========================================================================== */
.hark-event-body {
  padding: clamp(48px, 8vh, 86px) clamp(22px, 5vw, 72px) clamp(36px, 5vh, 60px);
}

.event-side {
  background: var(--cream-2);
  border: 1px solid rgba(58, 40, 22, 0.1);
  border-radius: 18px;
  padding: 28px 26px;
  position: sticky;
  top: 100px;
}

.event-side .badge {
  margin-bottom: 20px;
}

.event-side-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-side-meta .meta-label {
  color: #7A6A3A;
}

.event-side-meta .meta-val {
  color: var(--green-deep);
}

.event-side .hark-btn {
  margin-top: 24px;
}

.hark-backband {
  padding: clamp(50px, 8vh, 90px) clamp(22px, 5vw, 72px);
  text-align: center;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.hark-contact-body {
  padding-bottom: clamp(80px, 12vh, 160px);
  overflow: visible;
}

.offer-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}

.offer-list li {
  display: flex;
  gap: 13px;
  align-items: baseline;
  font-size: 16.5px;
  color: #3B4632;
}

.offer-list .flower-bullet {
  font-size: 18px;
}

.contact-direct {
  padding: 22px 24px;
  background: var(--cream-2);
  border-radius: 16px;
  border: 1px solid rgba(58, 40, 22, 0.1);
  max-width: 480px;
}

.contact-direct-title {
  margin: 0 0 10px;
  font-family: 'Shantell Sans', cursive;
  font-size: 17px;
  color: var(--green);
}

.contact-direct-person {
  margin: 0 0 4px;
  font-size: 15.5px;
  color: #4A4334;
}

.contact-direct-person a {
  color: var(--green-deep);
  font-weight: 600;
}

.contact-form-col {
  position: relative;
}

.contact-form-card {
  position: relative;
  background: var(--paper);
  padding: clamp(26px, 3vw, 40px);
  border-radius: 18px;
  box-shadow: 0 36px 64px -36px rgba(58, 40, 22, 0.55);
  border: 1px solid rgba(58, 40, 22, 0.08);
  position: sticky;
  top: 100px;
  transform: rotate(-3deg) scale(0.97);
  will-change: transform;
}

.contact-form-title {
  margin: 0 0 4px;
  font-family: 'Shantell Sans', cursive;
  font-size: 21px;
  color: var(--green-deep);
}

.contact-form-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: #7A6A3A;
}

/* Drupal booking form */
.hark-form .form-item {
  margin: 0 0 14px;
}

.hark-form input[type="text"],
.hark-form input[type="email"],
.hark-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  border: 1.5px solid rgba(58, 40, 22, 0.18);
  border-radius: 11px;
  background: var(--cream);
  color: var(--ink);
  outline: none;
}

.hark-form input:focus,
.hark-form textarea:focus {
  border-color: var(--green);
}

.hark-form textarea {
  resize: vertical;
}

.hark-form .form-actions {
  margin-top: 4px;
}

.hark-form .button {
  width: 100%;
  background: var(--green);
  color: var(--cream);
  border: none;
  font-family: 'Shantell Sans', cursive;
  font-weight: 600;
  font-size: 17px;
  padding: 15px 22px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 16px 28px -16px rgba(46, 68, 31, 0.8);
}

.hark-form .button:active {
  transform: scale(0.98);
}

.hark-form select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  border: 1.5px solid rgba(58, 40, 22, 0.18);
  border-radius: 11px;
  background: var(--cream);
  color: var(--ink);
  outline: none;
}

.hark-form select:focus {
  border-color: var(--green);
}

.hark-form input[type="checkbox"],
.hark-form input[type="radio"] {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

/* embedded on the event page, above the gallery — same card look as the
   contact page's form, but full-width and static (not sticky/rotated,
   which only makes sense in that page's two-column layout) */
.hark-embedded-form {
  padding: clamp(40px, 7vh, 80px) clamp(22px, 5vw, 72px);
}

.contact-form-card--embedded {
  position: static;
  top: auto;
  transform: none;
  max-width: 640px;
  margin: 0 auto;
}

/* status messages — status-messages.html.twig carries no CSS classes of
   its own in this Drupal version (ARIA landmarks only: [role=contentinfo],
   with a nested [role=alert] for errors), and always renders first inside
   .hark-main (Drupal's own BlockPageVariant fallback — see hark.theme's
   hark_preprocess_page()) — so give it the same top clearance + centred
   width .hark-wrap gives everything else, directly on the attribute
   selector. */
[data-drupal-messages] {
  /* 100px, not the fixed nav's own ~70px height — matches the clearance
     .contact-form-card already uses elsewhere for the same fixed nav, so
     there's an actual gap instead of the message sitting flush against it. */
  padding: 100px clamp(22px, 5vw, 72px) 0;
  max-width: 1180px;
  margin: 0 auto;
}

[data-drupal-messages] [role="contentinfo"] {
  margin: 16px 0 0;
  font-family: 'Shantell Sans', cursive;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 11px;
  background: var(--sage-light);
  color: var(--green-darker);
}

[data-drupal-messages] [role="contentinfo"]:has([role="alert"]) {
  background: #F2D6DD;
  color: #7A2049;
}

[data-drupal-messages] ul {
  margin: 0;
  padding-left: 20px;
}

/* Webform's "limit reached" / "closed" warning renders inline inside the
   form itself, reusing this same status-messages partial — undo the
   page-level top clearance/centering above, since here it's just another
   line inside a card, not the top of the page. */
.webform-message [data-drupal-messages] {
  padding: 0;
  max-width: none;
  margin: 0 0 14px;
}

/* inline confirmation — replaces the form in place after a submission, so
   it needs to look intentional wherever it lands (contact card, embedded
   event card, or a bare standalone webform page). */
.webform-confirmation {
  text-align: center;
  padding: 12px 0;
}

.webform-confirmation__message {
  font-family: 'Shantell Sans', cursive;
  font-size: 18px;
  color: var(--green-deep);
  margin: 0;
}

.webform-confirmation__back {
  margin-top: 16px;
}

.webform-confirmation__back a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

/* standalone webform pages (built purely from the admin UI — no dedicated
   Hark template) get baseline page chrome here: nav clearance, centred
   width, and a card so the form/confirmation don't sit bare under the nav. */
.page-webform .hark-main {
  padding: clamp(120px, 15vh, 160px) clamp(22px, 5vw, 72px) clamp(60px, 8vh, 100px);
  max-width: 760px;
  margin: 0 auto;
}

.page-webform .hark-form,
.page-webform .webform-confirmation {
  background: var(--paper);
  padding: clamp(26px, 3vw, 40px);
  border-radius: 18px;
  box-shadow: 0 36px 64px -36px rgba(58, 40, 22, 0.55);
  border: 1px solid rgba(58, 40, 22, 0.08);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.hark-footer {
  position: relative;
  background: var(--brown);
  color: #EDE3CB;
  padding: clamp(72px, 10vh, 130px) clamp(22px, 5vw, 72px) 36px;
}

.hark-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.hark-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(34px, 5vw, 64px);
}

.hark-logo--footer {
  font-size: 30px;
  padding: 8px 19px 11px;
  border-radius: 14px 16px 12px 15px;
}

.hark-footer-quote {
  margin: 22px 0 0;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: clamp(19px, 2.3vw, 27px);
  line-height: 1.3;
  color: var(--cream);
  max-width: 380px;
}

.hark-footer-tagline {
  margin: 16px 0 0;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #B7A887;
  font-family: 'Shantell Sans', cursive;
}

.hark-footer-head {
  margin: 0 0 16px;
  font-family: 'Shantell Sans', cursive;
  font-size: 17px;
  color: var(--amber);
}

.hark-footer-email {
  margin: 0 0 20px;
}

.hark-footer-email a {
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
}

.hark-footer-person {
  margin-bottom: 16px;
}

.hark-footer-name {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
}

.hark-footer-contact a {
  display: block;
  font-size: 14.5px;
  color: #CFC2A4;
  margin-top: 2px;
}

.hark-footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 15px;
}

.hark-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #EDE3CB;
}

.hark-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.hark-footer-social .hark-btn {
  margin-top: 22px;
}

.hark-btn--amber.hark-btn {
  color: #3A2817;
}

.hark-footer-bottom {
  margin-top: clamp(42px, 6vw, 68px);
  padding-top: 22px;
  border-top: 1px solid rgba(237, 227, 203, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 13px;
  color: #9C8E72;
}

.hark-script {
  font-family: 'Shantell Sans', cursive;
}

/* ==========================================================================
   ANIMATION — initial (hidden) states, only when JS is on.
   The JS reveals these on scroll; without JS everything is simply visible.
   ========================================================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

.js [data-enter] {
  opacity: 0;
  transform: translateY(26px);
}

.js [data-stagger-item] {
  opacity: 0;
  transform: translateY(28px);
}

.js .hark-hero [data-hero] {
  opacity: 0;
}

.js .hark-hero-mountains {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {

  .js [data-reveal],
  .js [data-enter],
  .js [data-stagger-item],
  .js .hark-hero [data-hero] {
    opacity: 1 !important;
    transform: none !important;
  }

  .js .hark-hero-mountains {
    opacity: 0.6 !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {

  .hark-pl--tl,
  .hark-pl--br,
  .hark-events-polaroid,
  .deco {
    display: none;
  }
}

@media (max-width: 960px) {
  .hark-bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-col-1,
  .bento-col-2,
  .bento-col-3 {
    grid-column: auto;
  }

  .bento-row-1,
  .bento-row-2 {
    grid-row: auto;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .agenda-feature-grid {
    grid-template-columns: auto 1fr;
  }

  .agenda-feature-img {
    display: none;
  }
}

@media (max-width: 820px) {
  .hark-navlinks {
    display: none;
  }

  .hark-burger {
    display: flex;
  }

  .two-col,
  .hark-about-grid,
  .hark-footer-grid,
  .hark-feature-grid {
    grid-template-columns: 1fr;
  }

  .hark-hero-note {
    font-size: 84px;
  }

  .contact-form-card {
    transform: none;
    position: static;
  }

  .event-side {
    position: static;
  }
}

@media (max-width: 600px) {
  .hark-bento {
    grid-template-columns: 1fr;
  }

  .hark-hero-note {
    font-size: 64px;
  }

  .agenda-feature-grid {
    grid-template-columns: 1fr;
  }

  .agenda-row,
  .event-row {
    grid-template-columns: auto 1fr;
  }

  .event-row-arrow,
  .agenda-row-arrow {
    display: none;
  }

  .past-row {
    grid-template-columns: auto 1fr;
  }

  .past-date,
  .past-cta {
    display: none;
  }

  /* Mobile only: restyle the home page's featured event card to match the
     dark/amber look of the featured card on /evenementen. Desktop is
     untouched — this is purely a color/typography reskin of the existing
     .agenda-feature markup, not a layout change. */
  .agenda-feature {
    background: var(--green-deep);
    color: var(--cream);
    box-shadow: 0 40px 70px -40px rgba(58, 40, 22, 0.6);
  }

  .agenda-feature .badge--dark {
    background: var(--amber);
    color: var(--green-deep);
  }

  .agenda-feature-body h3 {
    color: var(--cream);
    font-style: italic;
  }

  .agenda-feature-summary {
    color: #D8D0B8;
  }

  .agenda-feature .agenda-meta {
    color: #B9C5A8;
  }

  /* The date block is dark green like the card itself now (see the base
     .agenda-date--big rule) — on desktop it still stands out against the
     mustard card, but on mobile (card = dark green too) it needs its own
     contrast, so shade it instead of relying on a hue difference. */
  .agenda-feature .agenda-date--big {
    background: rgba(0, 0, 0, 0.18);
  }

  .deco, .hark-hero-sprig {
    display: none
  }

  .hark-hero-mountains {
    object-fit: cover;
    height: 100%
  }

  .hark-hero {
    min-height: 70svh;
  }

  .hark-hero-cue{
    bottom: 0
  }
}

/* ==========================================================================
   COOKIE CONSENT — banner + preferences modal (see js/consent.js)
   ========================================================================== */

.hark-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: var(--brown);
  color: var(--cream);
  box-shadow: 0 -12px 32px -12px rgba(0, 0, 0, 0.35);
}

.hark-cookiebar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  justify-content: space-between;
}

.hark-cookiebar-text {
  flex: 1 1 420px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--cream);
}

.hark-cookiebar-text a {
  color: var(--amber);
  text-decoration: underline;
  text-decoration-color: rgba(231, 194, 74, 0.5);
}

.hark-cookiebar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hark-cookiebar-actions .hark-btn {
  padding: 11px 18px;
  font-size: 14.5px;
}

.hark-cookiebar-actions .hark-btn--outline {
  border-color: rgba(244, 237, 216, 0.4);
  color: var(--cream);
}

.hark-cookiemodal {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* The class above sets display:flex unconditionally, which otherwise beats
   the browser's default [hidden] { display:none } — so the modal would
   never actually hide once toggled. */
.hark-cookiemodal[hidden] {
  display: none;
}

.hark-cookiemodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 30, 18, 0.55);
}

.hark-cookiemodal-panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 18px;
  padding: 30px clamp(22px, 4vw, 34px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}

.hark-cookiemodal-title {
  margin: 0 0 8px;
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 1.5em;
  color: var(--green-deep);
}

.hark-cookiemodal-intro {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #6A6045;
}

.hark-cookiemodal-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.hark-cookiemodal-row:first-of-type {
  border-top: none;
}

.hark-cookiemodal-label {
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--green-deep);
}

.hark-cookiemodal-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #7A6A3A;
}

.hark-cookiemodal-row input[type="checkbox"] {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--green);
}

.hark-cookiemodal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

/* ==========================================================================
   PRIVACY PAGE — cookie disclosure table
   ========================================================================== */

.hark-cookietable-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.hark-cookietable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  background: var(--paper);
}

.hark-cookietable th,
.hark-cookietable td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.hark-cookietable th {
  font-family: 'Shantell Sans', cursive;
  color: var(--green-deep);
  background: var(--cream-2);
}

.hark-cookietable tr:last-child td {
  border-bottom: none;
}

.hark-privacy-manage {
  margin-top: 26px;
}

/* Footer "Privacy- en cookiebeleid / Cookievoorkeuren" line. */
.hark-footer-bottom a,
.hark-footer-cookielink {
  color: #9C8E72;
  text-decoration: underline;
  text-decoration-color: rgba(156, 142, 114, 0.5);
}

.hark-footer-cookielink {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.hark-footer-bottom a:hover,
.hark-footer-cookielink:hover {
  color: var(--amber);
  text-decoration-color: currentColor;
}