/* ============================================
   JOYLANI VELAS — Shared Stylesheet
   Editorial Luxury aesthetic · Solingen
   ============================================ */

:root {
  --cream: #F7F3EE;
  --cream-dark: #EDE8DF;
  --linen: #DDD6CB;
  --sand: #C09A72;
  --sand-dark: #9A7A58;
  --sage: #8B9E7E;
  --charcoal: #2C2416;
  --charcoal-mid: #5A5248;

  --max: 1280px;
  --pad: 5vw;

  --shadow: 0 2px 20px rgba(44, 36, 22, 0.06);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', 'Helvetica Neue', Helvetica, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; letter-spacing: -0.01em; line-height: 1.1; }
h1 { font-size: clamp(44px, 6vw, 80px); letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 400; }

.eyebrow, .label {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
}
.nav-item {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.price { font-weight: 400; font-size: 15px; letter-spacing: 0.1em; }
.italic { font-style: italic; font-family: var(--serif); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--sand);
  color: var(--charcoal);
  background: transparent;
}
.btn:hover { background: var(--sand); color: var(--cream); }
.btn-filled { background: var(--sand); color: var(--cream); }
.btn-filled:hover { background: var(--sand-dark); border-color: var(--sand-dark); }
.btn-light { border-color: var(--cream); color: var(--cream); }
.btn-light:hover { background: var(--cream); color: var(--charcoal); }
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(60px, 10vw, 140px) 0; }
.dark { background: var(--charcoal); color: var(--cream); }
.dark .label, .dark .eyebrow { color: rgba(247, 243, 238, 0.55); }
.dark h1, .dark h2, .dark h3 { color: var(--cream); }

/* ---------- Divider ---------- */
.hr { border: 0; border-top: 0.5px solid var(--linen); height: 0; }
.dark .hr { border-top-color: rgba(247, 243, 238, 0.15); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 24px 0;
}
.nav.scrolled { background: var(--cream); box-shadow: var(--shadow); padding: 16px 0; }
.nav.force-solid { background: var(--cream); box-shadow: var(--shadow); padding: 16px 0; }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand img { max-height: 124px; width: auto; mix-blend-mode: multiply; transition: max-height 0.4s ease; }
.nav.scrolled .nav-brand img, .nav.force-solid .nav-brand img { max-height: 112px; }
.nav.force-solid { padding: 8px 0; }
.nav-links { display: flex; gap: 38px; justify-content: center; }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 0.5px; background: var(--sand); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-social { display: flex; gap: 18px; justify-content: flex-end; align-items: center; }
.nav-social a {
  width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  border: 0.5px solid var(--linen); transition: all 0.3s ease;
}
.nav-social a:hover { border-color: var(--sand); color: var(--sand); }
.nav-social svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Mobile menu overlay ---------- */
.mobile-menu {
  position: fixed; inset: 0; background: var(--cream); z-index: 200;
  display: none; flex-direction: column; padding: 32px var(--pad);
}
.mobile-menu.open { display: flex; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-links { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 28px; }
.mobile-menu-links a {
  font-family: var(--serif); font-weight: 300; font-size: 44px; line-height: 1;
}
.mobile-menu-links a.italic { font-style: italic; }
.mobile-menu-foot { display: flex; gap: 24px; padding-top: 32px; border-top: 0.5px solid var(--linen); }

/* ============================================
   MARKET BANNER
   ============================================ */
.market-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  background: var(--sand); color: var(--cream);
  padding: 10px clamp(40px, var(--pad), 80px);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 16px;
  font-family: var(--sans); font-weight: 300; font-size: 12px; letter-spacing: 0.08em; line-height: 1.5;
  text-align: center;
  transform: translateY(-100%); transition: transform 0.4s ease;
}
.market-banner.show { transform: translateY(0); }
.market-banner a { border-bottom: 0.5px solid rgba(247, 243, 238, 0.5); padding-bottom: 2px; }
.market-banner .close {
  position: absolute; right: var(--pad); color: var(--cream);
  font-size: 16px; padding: 4px 8px;
}
body.banner-visible .nav { top: 38px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 86vh; display: grid; grid-template-columns: 55fr 45fr; gap: 0;
}
body.has-solid-nav { padding-top: 108px; }
body.has-solid-nav.banner-visible { padding-top: 146px; }
.hero-media {
  background: var(--cream-dark);
  position: relative; overflow: hidden; margin-right: -1px;
}
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  /* Soft fade from the image into the cream copy column — kills the hard cut */
  content: '';
  position: absolute; top: 0; right: -1px; bottom: 0;
  width: 22%;
  background: linear-gradient(to right, rgba(247,243,238,0) 0%, var(--cream) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-media .cap {
  position: absolute; bottom: 24px; left: 24px; color: var(--cream);
  font-family: var(--sans); font-weight: 200; font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; opacity: 0.7;
}
.hero-copy {
  padding: clamp(40px, 8vw, 120px) clamp(32px, 6vw, 100px);
  display: flex; flex-direction: column; justify-content: center; gap: 32px;
  background: var(--cream);
  position: relative; z-index: 3;
}
.hero-copy h1 { font-size: clamp(48px, 5.5vw, 80px); }
.hero-copy .label {
  font-family: var(--sans); font-weight: 300; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--sand);
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-copy .label::before {
  content: ''; width: 32px; height: 0.5px; background: var(--sand); display: inline-block;
}
.hero-copy .sub { max-width: 420px; color: var(--charcoal-mid); }
.hero-copy .row { display: flex; gap: 16px; flex-wrap: wrap; }

/* staggered fade */
.fade-in > * { opacity: 0; transform: translateY(15px); animation: fadeUp 0.8s ease forwards; }
.fade-in > *:nth-child(1) { animation-delay: 0s; }
.fade-in > *:nth-child(2) { animation-delay: 0.1s; }
.fade-in > *:nth-child(3) { animation-delay: 0.2s; }
.fade-in > *:nth-child(4) { animation-delay: 0.3s; }
.fade-in > *:nth-child(5) { animation-delay: 0.4s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   CATEGORY GRID
   ============================================ */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--linen);
}
.cat-tile {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: var(--cream-dark); cursor: pointer;
}
.cat-tile .ph {
  position: absolute; inset: 0; transition: transform 0.7s ease;
}
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile:hover .ph { transform: scale(1.05); }
.cat-tile .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,36,22,0.1) 0%, rgba(44,36,22,0.55) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: 28px; color: var(--cream); gap: 4px;
}
.cat-tile .overlay .num {
  font-family: var(--sans); font-weight: 200; font-size: 10px; letter-spacing: 0.25em;
  opacity: 0.7;
}
.cat-tile .overlay h3 { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--cream); }

/* placeholder textures */
.ph-1 { background: linear-gradient(135deg, #d3b890 0%, #8a6a48 100%); }
.ph-2 { background: linear-gradient(135deg, #c9a983 0%, #5a4a34 100%); }
.ph-3 { background: linear-gradient(135deg, #8b9e7e 0%, #4a5a3e 100%); }
.ph-4 { background: linear-gradient(135deg, #ddd0ba 0%, #9a7a58 100%); }
.ph-5 { background: linear-gradient(135deg, #f0e0c8 0%, #c09a72 100%); }
.ph-6 { background: linear-gradient(135deg, #eadfce 0%, #8b7a5e 100%); }
.ph-soft { background: linear-gradient(135deg, #ede0cb 0%, #c9a983 60%, #8a6a48 100%); }

/* ============================================
   SECTION HEADINGS
   ============================================ */
.sec-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 64px; gap: 32px; flex-wrap: wrap;
}
.sec-head .title { flex: 1; min-width: 280px; }
.sec-head h2 { font-style: italic; }
.sec-head .lead { max-width: 440px; color: var(--charcoal-mid); margin-top: 16px; }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 48px) clamp(20px, 3vw, 48px); }
.prod {
  display: block; cursor: pointer;
}
.prod:hover .prod-title { color: var(--sand); }
.prod-img {
  aspect-ratio: 3/4; background: var(--cream-dark); position: relative; overflow: hidden;
  margin-bottom: 22px;
}
.prod-img .ph { position: absolute; inset: 0; }
.prod-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.prod:hover .prod-img img { transform: scale(1.05); }
.prod-cat { font-family: var(--sans); font-weight: 300; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sand); margin-bottom: 6px; }
.prod-title { font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 10px; transition: color 0.3s ease; }
.prod-price { font-family: var(--sans); font-weight: 400; font-size: 14px; letter-spacing: 0.1em; color: var(--charcoal-mid); margin-bottom: 14px; }
.prod-price--sale { color: var(--charcoal); font-weight: 500; }
.prod-price--uvp { text-decoration: line-through; color: var(--charcoal-mid); font-size: 12px; margin-left: 6px; opacity: .7; }
.sale-badge { display: inline-block; font-family: var(--sans); font-size: 9px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; background: var(--sand); color: var(--cream); padding: 3px 8px; border-radius: 1px; margin-bottom: 8px; }
.prod-more { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; display: inline-flex; gap: 8px; }

/* ============================================
   PULLQUOTE
   ============================================ */
.pull {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 900px;
}
.pull::before { content: '“'; display: block; font-size: 1em; line-height: 0.3; opacity: 0.3; margin-bottom: 20px; }

/* ============================================
   MARKETS
   ============================================ */
.markets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--linen); }
.market-card {
  background: var(--cream); padding: 48px; display: grid;
  grid-template-columns: 140px 1fr; gap: 36px; align-items: start;
}
.market-card .date {
  font-family: var(--serif); font-weight: 300; line-height: 0.95; letter-spacing: -0.02em;
}
.market-card .date .d { font-size: 72px; display: block; }
.market-card .date .m { font-size: 18px; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--sans); font-weight: 300; color: var(--sand); margin-top: 10px; display: block; }
.market-card h3 { font-style: italic; margin-bottom: 10px; }
.market-card .loc { color: var(--charcoal-mid); font-size: 14px; }
.market-card .meta { margin-top: 16px; padding-top: 16px; border-top: 0.5px solid var(--linen); font-size: 13px; color: var(--charcoal-mid); }
.market-card.past { opacity: 0.55; }
.market-card.past:hover { opacity: 0.85; }

/* ============================================
   INSTAGRAM TEASER
   ============================================ */
.ig-teaser { text-align: center; padding: clamp(80px, 12vw, 160px) 0; }
.ig-teaser .handle {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(54px, 8vw, 108px); letter-spacing: -0.02em;
  line-height: 1.05; margin-bottom: 40px;
}
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; background: var(--linen); }
.ig-cell { aspect-ratio: 1/1; position: relative; overflow: hidden; }
.ig-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--cream); padding: 80px 0 40px; border-top: 0.5px solid var(--linen);
  text-align: center;
}
.footer img.logo { max-height: 128px; width: auto; margin: 0 auto 28px; mix-blend-mode: multiply; image-rendering: -webkit-optimize-contrast; }
.footer .tag {
  font-family: var(--sans); font-weight: 300; font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--charcoal-mid); margin-bottom: 24px;
}
.footer .socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 40px; }
.footer .socials a {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border: 0.5px solid var(--linen); transition: all 0.3s ease;
}
.footer .socials a:hover { border-color: var(--sand); color: var(--sand); }
.footer .socials svg { width: 15px; height: 15px; }
.footer .links { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; margin-bottom: 40px; }
.footer .links a {
  font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--charcoal-mid);
}
.footer .links a:hover { color: var(--charcoal); }
.footer .copy {
  font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 0.1em;
  color: var(--charcoal-mid); padding-top: 28px; border-top: 0.5px solid var(--linen);
  max-width: 700px; margin: 0 auto;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.page-head {
  padding: 180px 0 60px; text-align: center;
}
.page-head h1 { font-style: italic; margin-bottom: 20px; }
.page-head .lead { color: var(--charcoal-mid); max-width: 560px; margin: 0 auto; }

.toolbar {
  display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center;
  padding: 28px 0; border-top: 0.5px solid var(--linen); border-bottom: 0.5px solid var(--linen);
  margin-bottom: 60px;
}
.search {
  position: relative; max-width: 360px;
}
.search input {
  width: 100%; padding: 12px 16px 12px 40px;
  background: transparent; border: 0.5px solid var(--linen);
  font-family: var(--sans); font-weight: 300; font-size: 14px; letter-spacing: 0.02em;
  color: var(--charcoal); border-radius: 1px;
}
.search input:focus { outline: none; border-color: var(--sand); }
.search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; opacity: 0.5; }

.filter-bar { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-bar button {
  padding: 10px 18px;
  font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  border: 0.5px solid var(--linen); color: var(--charcoal); background: transparent;
  transition: all 0.3s ease; border-radius: 1px;
}
.filter-bar button:hover { border-color: var(--sand); }
.filter-bar button.active { background: var(--sand); color: var(--cream); border-color: var(--sand); }

.sort select {
  padding: 10px 32px 10px 14px;
  font-family: var(--sans); font-weight: 300; font-size: 12px; letter-spacing: 0.1em;
  border: 0.5px solid var(--linen); background: transparent;
  color: var(--charcoal); border-radius: 1px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%232C2416' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}

.prod-count {
  font-family: var(--sans); font-weight: 200; font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--charcoal-mid); margin-bottom: 28px;
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.pd-wrap { padding: 140px 0 0; }
.pd-back {
  font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; display: inline-flex; gap: 10px; margin-bottom: 40px;
  color: var(--charcoal-mid);
}
.pd-back:hover { color: var(--sand); }
.pd-grid { display: grid; grid-template-columns: 55% 45%; gap: 80px; align-items: start; }
.pd-media { display: grid; gap: 8px; }
.pd-media .main { aspect-ratio: 4/5; position: relative; overflow: hidden; background: var(--cream-dark); }
.pd-media .main img, .pd-media .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pd-media .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pd-media .thumb { aspect-ratio: 1/1; position: relative; overflow: hidden; cursor: pointer; border: 0.5px solid transparent; }
.pd-media .thumb.active { border-color: var(--sand); }
.pd-info { position: sticky; top: 120px; padding-top: 0; }
.pd-info h1 { font-size: clamp(40px, 4vw, 56px); margin: 12px 0 20px; font-style: italic; }
.pd-info .price { font-size: 20px; letter-spacing: 0.1em; color: var(--sand); margin-bottom: 40px; display: block; }
.pd-info .price--sale { color: var(--charcoal); }
.pd-info .price--uvp { font-size: 14px; text-decoration: line-through; color: var(--charcoal-mid); opacity: .6; margin-left: 8px; font-weight: 300; }
.pd-info .sale-badge { margin-bottom: 12px; }
.pd-info .mood { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 20px; line-height: 1.5; color: var(--charcoal-mid); margin-bottom: 40px; padding-bottom: 40px; border-bottom: 0.5px solid var(--linen); }
.pd-details { list-style: none; margin-bottom: 40px; }
.pd-details li {
  display: grid; grid-template-columns: 140px 1fr; padding: 14px 0;
  border-bottom: 0.5px solid var(--linen); font-size: 14px;
}
.pd-details li span:first-child { font-weight: 200; letter-spacing: 0.2em; text-transform: uppercase; font-size: 10px; color: var(--charcoal-mid); align-self: center; }
.pd-details li span:last-child { color: var(--charcoal); }

.accordion { border-top: 0.5px solid var(--linen); margin-bottom: 40px; }
.ac-item { border-bottom: 0.5px solid var(--linen); }
.ac-head {
  width: 100%; padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-weight: 300; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  text-align: left;
}
.ac-head .sign { font-family: var(--serif); font-size: 20px; transition: transform 0.3s ease; }
.ac-item.open .ac-head .sign { transform: rotate(45deg); }
.ac-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.ac-body-inner { padding-bottom: 24px; font-size: 14px; color: var(--charcoal-mid); line-height: 1.8; }
.ac-item.open .ac-body { max-height: 500px; }

.order-box {
  border: 0.5px solid var(--linen); padding: 36px; margin-top: 16px;
  background: var(--cream);
}
.order-box h3 { font-style: italic; margin-bottom: 8px; font-size: 22px; }
.order-box p { color: var(--charcoal-mid); font-size: 14px; margin-bottom: 24px; }
.order-box .btns { display: flex; flex-direction: column; gap: 10px; }
.order-box .btns .btn { width: 100%; justify-content: center; }
.order-box .etsy { font-size: 12px; color: var(--charcoal-mid); margin-top: 20px; text-align: center; }
.order-box .etsy a { color: var(--sand); border-bottom: 0.5px solid var(--sand); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero { padding: 220px 0 140px; text-align: center; background: var(--cream); position: relative; }
.about-hero::before, .about-hero::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 1px; background: var(--linen);
}
.about-hero::before { top: 140px; height: 48px; }
.about-hero::after { bottom: 60px; height: 48px; }
.about-hero-logo { max-width: 120px; width: 22%; margin: 0 auto 36px; mix-blend-mode: multiply; display: block; }
.about-hero .eyebrow { color: var(--sand); }
.about-hero h1 { max-width: 900px; margin: 20px auto 0; font-style: italic; }

.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(40px, 6vw, 96px); }
.founder .portrait { aspect-ratio: 4/5; background: var(--cream-dark); margin-bottom: 32px; position: relative; overflow: hidden; }
.founder h3 { font-style: italic; margin-bottom: 6px; }
.founder .role { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sand); margin-bottom: 24px; }
.founder p { color: var(--charcoal-mid); max-width: 460px; }

.ingredients { background: var(--cream-dark); }
.ing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: var(--linen); }
.ing-cell { background: var(--cream-dark); padding: 44px 32px; display: flex; flex-direction: column; gap: 20px; }
.ing-cell .ico {
  width: 44px; height: 44px; border: 0.5px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 300; font-size: 18px; color: var(--sand);
}
.ing-cell h3 { font-size: 20px; font-style: italic; }
.ing-cell p { font-size: 14px; color: var(--charcoal-mid); }

.individual {
  text-align: center;
}
.individual .pull { margin: 0 auto; max-width: 820px; }
.individual .btn-wrap { margin-top: 48px; }

/* ============================================
   FAQ
   ============================================ */
.faq-head { padding: 180px 0 100px; text-align: center; }
.faq-head h1 { font-style: italic; }
.faq-group { margin-bottom: 80px; }
.faq-group-title {
  font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 0.5px solid var(--linen);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 120px); }
.form-field { margin-bottom: 28px; }
.form-field label {
  display: block; font-family: var(--sans); font-weight: 300; font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--charcoal-mid); margin-bottom: 10px;
}
.form-field label .req { color: var(--sand); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 14px 0;
  background: transparent; border: none; border-bottom: 0.5px solid var(--linen);
  font-family: var(--sans); font-weight: 300; font-size: 15px; letter-spacing: 0.02em;
  color: var(--charcoal); border-radius: 0;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-bottom-color: var(--sand);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.checkbox-field {
  display: flex; gap: 12px; align-items: start;
  margin-bottom: 36px; font-size: 13px; color: var(--charcoal-mid);
}
.checkbox-field input { width: 16px; height: 16px; accent-color: var(--sand); margin-top: 4px; }

.contact-side h3 { font-style: italic; margin-bottom: 20px; font-size: 24px; }
.contact-side p { color: var(--charcoal-mid); margin-bottom: 40px; }
.contact-card { border: 0.5px solid var(--linen); padding: 32px; margin-bottom: 2px; }
.contact-card .k {
  font-family: var(--sans); font-weight: 200; font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--charcoal-mid); margin-bottom: 10px;
}
.contact-card .v { font-family: var(--serif); font-style: italic; font-size: 22px; }

/* ============================================
   LEGAL (Impressum / Datenschutz)
   ============================================ */
.legal { padding: 180px 0 100px; max-width: 780px; margin: 0 auto; }
.legal h1 { font-style: italic; margin-bottom: 60px; }
.legal h2 { font-size: 28px; margin: 48px 0 20px; font-style: italic; }
.legal h3 { font-size: 20px; margin: 32px 0 12px; font-weight: 400; }
.legal p, .legal li { font-size: 15px; color: var(--charcoal-mid); margin-bottom: 14px; }
.legal ul { padding-left: 20px; }
.legal strong { color: var(--charcoal); font-weight: 400; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .nav-links, .nav-social { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-toggle { display: inline-flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 50vh; }
  .hero-media::after { top: auto; right: 0; left: 0; bottom: -1px; width: 100%; height: 40%; background: linear-gradient(to bottom, rgba(247,243,238,0) 0%, var(--cream) 100%); }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: 1fr; }
  .market-card { grid-template-columns: 1fr; gap: 20px; padding: 32px; }
  .market-card .date .d { font-size: 56px; }
  .founders { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-grid { grid-template-columns: 1fr; gap: 48px; }
  .pd-info { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .toolbar { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .nav-brand img { max-height: 72px; }

  /* Banner darf auf Mobile mehrzeilig sein, Nav rückt entsprechend nach */
  .market-banner {
    font-size: 11px;
    padding: 8px 36px;
    letter-spacing: 0.05em;
  }
  .market-banner .close { right: 8px; padding: 2px 6px; }
  body.banner-visible .nav { top: 62px; }
  body.has-solid-nav.banner-visible { padding-top: 170px; }
}
@media (max-width: 520px) {
  .prod-grid { grid-template-columns: 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: 1fr; }
  .hero-copy h1 br { display: none; }

  /* Mehr seitlicher Abstand auf sehr kleinen Screens — Text klebt sonst am Rand */
  :root { --pad: 24px; }

  /* Produktdetail: enge Stelle wo das Bild den Text einrahmt */
  .pd-wrap { padding-top: 140px; }
  .pd-info h1 { font-size: clamp(32px, 8vw, 44px); }
  .pd-info .price { font-size: 18px; margin-bottom: 28px; }
  .pd-info .mood { font-size: 17px; margin-bottom: 28px; padding-bottom: 28px; }
}
