:root {
  --bg: #F1E8DA;
  --bg-alt: #E7DCC7;
  --card: #FBF7EF;
  --ink: #2B241D;
  --ink-soft: #5A5044;
  --rust: #A8452A;
  --indigo: #33506B;
  --sage: #74815F;
  --line: rgba(43,36,29,0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin:0; padding:0; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Karla', sans-serif; font-size: 17px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display {
  font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.1;
  letter-spacing: -0.01em; margin: 0;
}
a { color: inherit; }
img { max-width: 100%; display:block; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.lang-de { display: none !important; }
body.show-de .lang-en.block { display: none !important; }
body.show-de .lang-de.block { display: block !important; }
body.show-de .lang-en.inline { display: none !important; }
body.show-de .lang-de.inline { display: inline !important; }

.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ HEADER / NAV ============ */
header.site {
  position: sticky; top: 0; z-index: 200;
  background: rgba(241,232,218,0.96); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 20px 32px; max-width: 1160px; margin: 0 auto; gap: 20px; }
.wordmark { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; text-decoration:none; flex-shrink:0; }
.wordmark-link { display:flex; align-items:center; gap:16px; text-decoration:none; flex-shrink:0; }
.logo-emblem { width:60px; height:60px; border-radius:50%; object-fit:cover; flex-shrink:0; }
/* .navlinks stretches to fill the header space between the logo and the
   (hidden-on-desktop) hamburger button, so its primary-links child has real
   room to center itself rather than hugging the right edge. */
.navlinks { display: flex; gap: 0; align-items: center; flex: 1; }
/* Primary nav links get their own centered zone, distinct from the
   icons + language toggle cluster which stays right-aligned — the
   margin-right is the deliberate gap between the two groups. */
.navlinks-primary { display: flex; align-items: center; justify-content: center; flex: 1; margin-right: 40px; }
.navlinks a.navlink { text-decoration: none; font-size: 0.94rem; color: var(--ink-soft); margin-right: 24px; white-space:nowrap; }
.navlinks a.navlink.active { color: var(--rust); font-weight: 700; }
.navlinks a.navlink:hover { color: var(--rust); }
.navicons { display:flex; gap:10px; align-items:center; margin-right: 14px; }
.langtoggle {
  border: 1px solid var(--ink); background: transparent; font-family: 'Karla', sans-serif;
  font-size: 0.85rem; font-weight: 700; padding: 6px 14px; border-radius: 100px; cursor: pointer; color: var(--ink);
  flex-shrink:0;
}
.langtoggle:hover { background: var(--ink); color: var(--bg); }
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:8px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.hamburger span { display:block; width:22px; height:2px; background: var(--ink); margin:5px 0; pointer-events:none; }
.mobile-menu { display:none; }
.mobile-menu.open { display:flex; flex-direction:column; gap:0; padding: 8px 32px 22px; border-top:1px solid var(--line); }
.mobile-menu a.navlink { padding: 13px 0; border-bottom: 1px solid var(--line); margin-right:0; text-decoration:none; color:var(--ink-soft); }
.mobile-menu a.navlink.active { color: var(--rust); font-weight:700; }
.mobile-menu .navicons { margin: 14px 0 0; }
@media (max-width: 900px) {
  .navlinks.desktop-links { display:none; }
  .hamburger { display:block; }
  .logo-emblem { width:48px; height:48px; }
  .wordmark-link { gap:12px; }
}
@media (max-width: 560px) {
  .searchbar { flex-wrap: wrap; border-radius: 20px; padding: 12px; }
  .searchbar input[type="text"] { width:100%; order:1; }
  .searchbar button.adv-toggle { order:2; padding-left:0; }
  .searchbar button.searchgo { order:3; margin-left:auto; }
  .logo-emblem { width:40px; height:40px; }
  .wordmark-link { gap:10px; }
}

/* search bar */
.searchbar-wrap { padding: 12px 32px; max-width:1160px; margin:0 auto; border-top:1px solid var(--line); }
.searchbar { display:flex; align-items:center; gap:10px; background: var(--card); border:1px solid var(--line); border-radius:100px; padding: 8px 8px 8px 18px; }
.searchbar input[type="text"] { flex:1; border:none; background:transparent; font-family:'Karla',sans-serif; font-size:0.95rem; outline:none; color:var(--ink); }
.searchbar button.searchgo { background:var(--rust); border:none; color:#fff; width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0; }
.searchbar button.adv-toggle { background:none; border:none; color:var(--ink-soft); font-size:0.85rem; font-weight:600; cursor:pointer; white-space:nowrap; padding: 6px 10px; }
.adv-panel { display:none; margin-top:12px; background:var(--card); border:1px solid var(--line); border-radius:16px; padding:20px; }
.adv-panel.open { display:grid; grid-template-columns: repeat(4,1fr); gap:14px; }
.adv-panel .field { display:flex; flex-direction:column; gap:6px; }
.adv-panel label { font-size:0.8rem; color:var(--ink-soft); font-weight:600; }
.adv-panel select, .adv-panel input { padding:9px 10px; border-radius:8px; border:1px solid var(--line); background:#fff; font-family:'Karla',sans-serif; font-size:0.9rem; }
@media (max-width:760px) { .adv-panel.open { grid-template-columns: 1fr 1fr; } }
.search-results { margin-top: 14px; }
.search-results .no-results { color: var(--ink-soft); font-size:0.9rem; }
.search-hint { font-size:0.78rem; color:var(--ink-soft); margin-top:8px; font-style:italic; }

/* ============ HERO CAROUSEL ============ */
.hero { position: relative; padding: 56px 0 76px; }
.hero-grid { display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items:center; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); max-width: 540px; }
.hero p.sub { margin-top: 20px; max-width: 46ch; font-size: 1.06rem; color: var(--ink-soft); }
.hero .ctas { margin-top: 30px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-motto { margin-top: 22px; font-style: italic; font-size: 0.92rem; color: var(--ink-soft); }
.btn { display: inline-block; padding: 13px 26px; border-radius: 100px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: transform 0.15s ease; border: none; cursor:pointer; font-family:'Karla',sans-serif; }
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--rust); color: #FBF7EF; }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); background:transparent; }

.hero-media { position:relative; border-radius: 28px 120px 28px 28px; overflow:hidden; aspect-ratio: 4/5; background: var(--ink); box-shadow: 0 30px 60px -20px rgba(43,36,29,0.35); }
.hero-slide { position:absolute; inset:0; opacity:0; transition: opacity 0.6s ease; }
.hero-slide.active { opacity:1; }
.hero-slide video, .hero-slide img { width:100%; height:100%; object-fit:cover; object-position: center 20%; }
.hero-arrow { position:absolute; top:50%; transform:translateY(-50%); width:42px; height:42px; border-radius:50%; background:rgba(251,247,239,0.85); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:5; color:var(--ink); }
.hero-arrow:hover { background:#fff; }
.hero-arrow.prev { left:14px; } .hero-arrow.next { right:14px; }
.hero-dots { position:absolute; bottom:16px; left:0; right:0; display:flex; justify-content:center; gap:8px; z-index:5; }
.hero-dots button { width:8px; height:8px; border-radius:50%; border:none; background:rgba(251,247,239,0.55); cursor:pointer; padding:0; }
.hero-dots button.active { background:#fff; width:22px; border-radius:4px; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero-media { order:-1; max-width:360px; margin:0 auto; } }

section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }
.eyebrow { color: var(--rust); font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; display:inline-block; }
.page-hero { padding-top: 56px; padding-bottom: 20px; }
.page-hero h1 { font-size: clamp(2rem,3.6vw,3rem); }
.page-hero p { color: var(--ink-soft); margin-top:14px; max-width:60ch; }

/* ABOUT / STORY */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-grid img { width: 100%; border-radius: 24px 100px 24px 100px; object-fit: cover; aspect-ratio: 4/5; }
.about-grid p { color: var(--ink-soft); margin-top: 16px; }
.stat-row { display: flex; gap: 34px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap:wrap; }
.stat-row .stat b { font-family:'Fraunces', serif; font-size: 1.6rem; display:block; color: var(--rust); }
.stat-row .stat span { font-size: 0.88rem; color: var(--ink-soft); }
@media (max-width:860px){ .about-grid{ grid-template-columns:1fr; } }

/* FAVORITES */
.fav-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fav-item { position:relative; border-radius: 18px; overflow:hidden; background: var(--card); }
.fav-item .imgwrap { aspect-ratio: 4/5; overflow:hidden; }
.fav-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.fav-item:hover img { transform: scale(1.05); }
.fav-tag { position:absolute; top:14px; left:14px; background: var(--rust); color:#fff; font-size:0.75rem; font-weight:700; padding: 5px 12px; border-radius:100px; }
.fav-wish { position:absolute; top:12px; right:12px; width:34px; height:34px; border-radius:50%; background: rgba(251,247,239,0.85); display:flex; align-items:center; justify-content:center; opacity:0.6; cursor: not-allowed; }
.fav-caption { padding: 14px 4px 4px; font-weight:600; font-size:0.98rem; }
.fav-item.hidden { display:none; }
@media (max-width: 900px) { .fav-grid { grid-template-columns: repeat(2, 1fr); } }

/* WORKSHOPS */
.workshop-cards { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.wcard { background: var(--card); border-radius: 22px; padding: 34px 28px; border: 1px solid var(--line); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.wcard:hover { box-shadow: 0 18px 34px -18px rgba(43,36,29,0.28); transform: translateY(-3px); }
.wcard .wicon { width:52px; height:52px; margin-bottom:20px; color: var(--rust); }
.wcard h3 { font-size: 1.3rem; margin-bottom: 10px; }
.wcard p { color: var(--ink-soft); font-size: 0.96rem; margin:0; }
.wcard-photo {
  margin-top: 18px; border-radius: 14px; overflow:hidden; aspect-ratio: 16/10;
  max-height: 0; opacity: 0; transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}
.wcard:hover .wcard-photo { max-height: 200px; opacity: 1; }
.wcard-photo img { width:100%; height:100%; object-fit:cover; }
.wcard-photo-placeholder {
  display:flex; align-items:center; justify-content:center; background: var(--bg-alt);
  font-size:0.82rem; color:var(--ink-soft); font-style:italic; text-align:center; padding: 0 14px;
}
.wcard-cal-btn {
  margin-top:16px; background:none; border:none; padding:0; color: var(--rust); font-weight:700;
  font-size:0.9rem; cursor:pointer; font-family:'Karla',sans-serif;
}
.wcard-cal-btn:hover { text-decoration: underline; }
@media (max-width: 860px) { .workshop-cards { grid-template-columns: 1fr; } }

.workshop-note { margin-top: 40px; background: var(--card); border-radius: 22px; padding: 40px; display:grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items:center; border:1px solid var(--line); }
@media (max-width: 700px) {
  .workshop-note { padding: 24px; }
  #cal-iframe { height: 560px !important; }
}
.placeholder-cal { border: 1.5px dashed var(--indigo); border-radius: 16px; padding: 30px; text-align:center; color: var(--indigo); font-size:0.92rem; }
.placeholder-cal b { display:block; font-family:'Fraunces',serif; font-size:1.15rem; margin-bottom:6px; }
@media (max-width: 860px) { .workshop-note { grid-template-columns: 1fr; padding:28px; } }

/* MAP */
.map-box { background: var(--card); border-radius: 24px; padding: 40px; border:1px solid var(--line); }
.map-svg-wrap { width:100%; margin-top: 20px; }
.map-svg-wrap svg { width:100%; height:auto; display:block; }
.map-svg-wrap .country { fill: var(--bg-alt); stroke: var(--card); stroke-width:0.6; transition: fill 0.2s ease; }
.map-svg-wrap .country.target { fill: var(--rust); cursor:pointer; }
.map-svg-wrap .country.target:hover { fill: #8a3720; }
.map-legend { display:flex; gap:14px; flex-wrap:wrap; margin-top:20px; }
.map-legend button { display:flex; align-items:center; gap:8px; background: var(--bg); border:1px solid var(--line); padding:8px 16px; border-radius:100px; font-family:'Karla',sans-serif; font-size:0.88rem; font-weight:600; cursor:pointer; color:var(--ink); }
.map-legend button .dot { width:10px; height:10px; border-radius:50%; background:var(--rust); }
.map-legend button.active { background: var(--rust); color:#fff; }
.map-legend button.active .dot { background:#fff; }
.map-tooltip { margin-top:16px; background: var(--bg); border-radius:12px; padding:16px 20px; font-size:0.92rem; color:var(--ink-soft); display:none; }
.map-tooltip.show { display:block; }
.map-future-note { margin-top: 22px; padding-top:22px; border-top:1px solid var(--line); font-size:0.88rem; color:var(--ink-soft); font-style:italic; }

/* ALBUM / LIGHTBOX */
.album-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.album-item { border-radius: 16px; overflow:hidden; cursor:pointer; aspect-ratio: 1/1; }
.album-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s ease; }
.album-item:hover img { transform: scale(1.08); }
@media (max-width: 860px) { .album-grid { grid-template-columns: repeat(2,1fr); } }
.lightbox { display:none; position:fixed; inset:0; background: rgba(20,15,10,0.92); z-index: 300; align-items:center; justify-content:center; padding: 40px; }
.lightbox.open { display:flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close { position:absolute; top:24px; right:32px; color:#fff; font-size:2rem; cursor:pointer; background:none; border:none; line-height:1; }

/* TESTIMONIALS */
.testi-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--card); border-radius: 20px; padding: 30px; border:1px solid var(--line); }
.testi-card .stars { color: var(--rust); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }
.testi-card p.quote { font-family:'Fraunces', serif; font-size: 1.08rem; font-weight:400; line-height:1.5; color: var(--ink); }
.testi-card .who { margin-top: 16px; font-size: 0.88rem; color: var(--ink-soft); font-weight:600; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }

/* PINTEREST */
.pin-box { display:grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items:center; background: var(--card); border-radius:24px; padding: 48px; border:1px solid var(--line); }
.pin-box .picon { width:64px; height:64px; margin-bottom:18px; }
.pin-box img { border-radius:24px 100px 24px 100px; aspect-ratio:4/5; object-fit:cover; }
@media (max-width: 860px) { .pin-box { grid-template-columns:1fr; padding:32px; } }

/* JOURNAL */
.journal-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.journal-card { background: var(--card); border-radius:18px; border:1px solid var(--line); overflow:hidden; text-decoration:none; color:var(--ink); display:flex; flex-direction:column; }
.journal-card .jimg { aspect-ratio: 16/10; overflow:hidden; }
.journal-card .jimg img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s ease; }
.journal-card:hover .jimg img { transform: scale(1.05); }
.journal-card .jbody { padding: 22px 24px 26px; flex:1; display:flex; flex-direction:column; }
.journal-card h3 { font-size:1.2rem; margin-bottom:8px; }
.journal-card .meta { font-size:0.82rem; color:var(--ink-soft); margin-bottom: 10px; }
.journal-card p.excerpt { color:var(--ink-soft); font-size:0.94rem; margin:0 0 16px; flex:1; }
.journal-card .readmore { font-weight:700; color:var(--rust); font-size:0.9rem; }
@media (max-width:800px) { .journal-grid { grid-template-columns:1fr; } }

/* article page */
.article-page { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.article-hero-img { width:100%; border-radius:20px; aspect-ratio:16/9; object-fit:cover; margin: 28px 0 36px; }
.article-page h1 { font-size: clamp(1.8rem,3.4vw,2.6rem); }
.article-meta { color:var(--ink-soft); font-size:0.9rem; margin-top:12px; }
.article-body p { color: var(--ink-soft); margin: 0 0 18px; font-size:1.05rem; }
.article-body img.inline-img { width:100%; border-radius:16px; margin: 8px 0 24px; aspect-ratio:16/10; object-fit:cover; }
.article-body h2 { font-size:1.4rem; margin: 32px 0 14px; }
.back-link { display:inline-block; margin: 40px 0 10px; color: var(--rust); font-weight:700; text-decoration:none; }

/* CONTACT */
.contact-grid { display:grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-social { display:flex; flex-direction:column; gap:14px; }
.social-row { display:flex; align-items:center; gap:14px; background:var(--card); border:1px solid var(--line); border-radius:14px; padding:16px 20px; text-decoration:none; color:var(--ink); }
.social-row:hover { border-color: var(--rust); }
.social-row .badge { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.social-row .label { font-weight:700; font-size:0.98rem; }
.social-row .sub { font-size:0.84rem; color:var(--ink-soft); }
.contact-form { background: var(--card); border-radius:22px; padding: 36px; border:1px solid var(--line); }
.form-row { margin-bottom:18px; }
.form-row label { display:block; font-size:0.88rem; font-weight:700; margin-bottom:7px; }
.form-row input, .form-row textarea { width:100%; padding:12px 14px; border-radius:10px; border:1px solid var(--line); font-family:'Karla',sans-serif; font-size:0.96rem; background:#fff; }
.form-row textarea { min-height:120px; resize:vertical; }
.captcha-box { display:flex; align-items:center; gap:14px; background: var(--bg); border-radius:12px; padding:16px; margin-bottom:20px; flex-wrap:wrap; }
.captcha-box .puzzle { font-family:'Fraunces',serif; font-size:1.2rem; font-weight:600; }
.captcha-box input[type="text"] { width:70px; padding:8px; border-radius:8px; border:1px solid var(--line); text-align:center; }
.captcha-box label.check { display:flex; align-items:center; gap:8px; font-size:0.9rem; color:var(--ink-soft); margin-left:auto; }
.form-msg { margin-top:14px; font-size:0.9rem; padding:12px 16px; border-radius:10px; display:none; }
.form-msg.show { display:block; }
.form-msg.ok { background:#E7F0E3; color:#3a5a34; }
.form-msg.err { background:#F5E1DC; color:#8a3720; }
/* honeypot: present in the DOM for spam bots to fill in, invisible and
   unreachable (tabindex -1) for real visitors using a mouse, keyboard, or
   screen reader */
.hp-field { position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; overflow:hidden; }

footer { padding: 56px 0 40px; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; align-items: center; }
footer .wordmark { font-size: 1.2rem; }
footer .fmeta { color: var(--ink-soft); font-size: 0.9rem; }
.footer-icons { display:flex; gap:12px; }

/* colored social badges (shared) */
.icon-badge { width:34px; height:34px; border-radius:9px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.icon-badge svg { width:19px; height:19px; }
.badge-insta { background: radial-gradient(circle at 30% 110%, #ffdb8b 0%, #ee2a7b 45%, #6228d7 100%); }
.badge-pin { background:#E60023; }
.badge-etsy { background:#F1641E; }
