/* ============================================================
   BOUTIQUE BANNER · dark immersive
   ============================================================ */

.boutique-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 95% at 90% 28%, var(--wash-rose), transparent 62%),
    var(--bg);
  color: var(--ink);
  isolation: isolate;
}

.boutique-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Photo bleeds in from the right; the left stays cream so dark text reads. */
.boutique-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, transparent 32%, #000 74%);
          mask-image: linear-gradient(100deg, transparent 0%, transparent 32%, #000 74%);
}

.boutique-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(100deg, var(--bg) 0%, rgba(251,248,241,0.82) 40%, rgba(251,248,241,0.16) 70%, transparent 100%);
}

.boutique-banner__frame {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 5rem);
  align-items: center;
  padding-block: clamp(4.5rem, 10vw, 8rem);
  padding-inline: var(--gutter);
  max-width: var(--max);
  margin-inline: auto;
}

.boutique-banner__body { display: flex; flex-direction: column; gap: var(--s-5); }

.boutique-banner__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-3xl);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.boutique-banner__title em { color: var(--wine); }

.boutique-banner__copy {
  font-size: var(--t-md);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 48ch;
}

.boutique-banner__actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-top: var(--s-3);
}

.boutique-meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: var(--s-4);
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--rule);
}

.boutique-meta-row:last-child { border-bottom: none; }

.boutique-meta-row__label {
  font-family: var(--body);
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.9;
}

.boutique-meta-row__value {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-md);
  color: var(--ink);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter {
  position: relative;
  overflow: hidden;
  background: var(--wash-blush);
  padding-block: clamp(4rem, 8vw, 6.5rem);
  border-block: 1px solid var(--rule-soft);
}

/* Same brand watercolour wash as the hero, centred behind the invitation. */
.newsletter::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1100px, 120%);
  aspect-ratio: 1400 / 1043;
  transform: translate(-50%, -50%);
  background: url("https://cdn.webshopapp.com/shops/336242/files/499898715/brand-wash.webp") no-repeat center / contain;
  opacity: 0.7;
  pointer-events: none;
}

.newsletter__frame { position: relative; z-index: 1; }

.newsletter__frame {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}

.newsletter__eyebrow {
  font-family: var(--display);

  font-size: var(--t-lg);
  letter-spacing: 0;
  text-transform: none;
  color: var(--wine);
}

.newsletter__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-2xl);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.018em;
}

.newsletter__title em { }

.newsletter__text {
  font-size: var(--t-md);
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.65;
}

.newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  max-width: 480px;
  margin-top: var(--s-4);
  background: var(--bg);
  border: 1px solid var(--rule);
  transition: border-color .2s var(--ease);
}

.newsletter__form:focus-within { border-color: var(--gold); }

.newsletter__form input {
  border: none;
  padding: 16px 22px;
  font: inherit;
  background: transparent;
  color: var(--ink);
  outline: none;
}

.newsletter__form input::placeholder { color: var(--ink-mute); }

.newsletter__form button {
  background: var(--wine);
  color: #fff;
  border: none;
  padding: 0 var(--s-6);
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s var(--ease);
}

.newsletter__form button:hover { background: var(--wine-deep); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background:
    radial-gradient(60% 100% at 100% 0%, var(--wash-rose), transparent 62%),
    radial-gradient(50% 90% at 0% 100%, var(--wash-blush), transparent 60%),
    var(--bg-2);
  color: var(--ink-soft);
  border-top: 1px solid var(--rule);
  padding-block: clamp(3.5rem, 6vw, 5rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: var(--s-8);
}

.footer__brand {
  display: inline-block;
  margin-bottom: var(--s-4);
}
.footer__brand img {
  height: clamp(52px, 4vw, 64px);
  width: auto;
  display: block;
  transition: opacity .25s var(--ease);
}
.footer__brand:hover img { opacity: 0.85; }

.footer__tag {
  font-size: var(--t-sm);
  color: var(--ink-soft);
  max-width: 36ch;
  line-height: 1.7;
  margin-bottom: var(--s-5);
}

.footer__socials { display: flex; gap: var(--s-2); }

.footer__socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  color: var(--wine);
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.footer__socials a:hover {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}

.footer__socials svg { width: 15px; height: 15px; }

.footer__col-title {
  font-family: var(--body);
  font-size: var(--t-xxs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: var(--s-4);
  font-weight: 600;
}

.footer__list { display: flex; flex-direction: column; gap: var(--s-3); }

.footer__list a {
  font-size: var(--t-sm);
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}

.footer__list a:hover { color: var(--wine); }

.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-block: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--t-xxs);
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.footer-bottom__payments { display: flex; gap: var(--s-2); align-items: center; }

.footer-bottom__payments .pay {
  width: 40px;
  height: 26px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 3px 4px;
  overflow: hidden;
}

.footer-bottom__payments .pay--bancontact { background: #FFD800; }

.footer-bottom__payments .pay svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   CATEGORY PAGE
   ============================================================ */

.cat-hero {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.cat-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--rule);
}

.cat-hero__crumbs {
  font-size: var(--t-xxs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--s-4);
}

.cat-hero__crumbs a:hover { color: var(--gold-text); }
.cat-hero__crumbs span { margin-inline: var(--s-2); opacity: 0.5; }

.cat-hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-4xl);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.cat-hero__title em { color: var(--gold-text); }

.cat-hero__intro {
  font-size: var(--t-md);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 70ch;
  padding-bottom: var(--s-3);
}

.cat-hero__meta {
  font-family: var(--display);

  color: var(--gold-text);
  font-size: var(--t-md);
  margin-top: var(--s-2);
}

.cat-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(2rem, 4vw, 3rem) clamp(4rem, 8vw, 7rem);
}

.sidebar { display: flex; flex-direction: column; gap: var(--s-5); }

.filter-block {
  border-bottom: 1px solid var(--rule);
  padding-bottom: var(--s-5);
}

.filter-block__head {
  /* JJ-04: real <button> — reset native chrome, keep original look */
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--s-4);
  cursor: pointer;
  user-select: none;
}

.filter-block__title {
  font-family: var(--body);
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.filter-block__toggle {
  font-family: var(--display);

  font-size: var(--t-sm);
  color: var(--gold-text);
  transform: rotate(45deg); /* JJ-14: expanded shows × (close) */
  transition: transform .2s var(--ease);
}

.filter-block.is-collapsed .filter-block__body { display: none; }
.filter-block.is-collapsed .filter-block__toggle { transform: rotate(0deg); } /* JJ-14: collapsed shows + (expand) */

.cat-tree { display: flex; flex-direction: column; gap: var(--s-2); }

.cat-tree a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--t-sm);
  color: var(--ink-soft);
  padding-block: 4px;
  transition: color .2s var(--ease);
}

.cat-tree a:hover { color: var(--ink); }

.cat-tree a.is-current {
  color: var(--gold-text);
  font-weight: 500;
}

.cat-tree__count {
  font-family: var(--display);

  font-size: var(--t-xs);
  color: var(--ink-mute);
}

.price-slider {
  position: relative;
  height: 24px;
  margin-block: var(--s-5) var(--s-4);
}

.price-slider__track {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: var(--rule);
  transform: translateY(-50%);
}

.price-slider__fill {
  position: absolute;
  top: 50%;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
  pointer-events: none;
}

.price-slider input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  z-index: 2;
}

.price-slider input[type="range"]:focus { outline: none; }

.price-slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--bg);
  border: 1.5px solid var(--gold);
  cursor: grab;
  transition: transform .15s var(--ease);
}

.price-slider input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.2);
}

.price-slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--bg);
  border: 1.5px solid var(--gold);
  cursor: grab;
}

.price-slider input[type="range"]::-webkit-slider-runnable-track { background: transparent; }
.price-slider input[type="range"]::-moz-range-track { background: transparent; }

.price-range {
  display: flex;
  justify-content: space-between;
  font-size: var(--t-xs);
  color: var(--ink-mute);
  font-family: var(--display);

}

/* No-results empty state */
.wines-empty {
  grid-column: 1 / -1;
  padding: var(--s-9) var(--s-4);
  text-align: center;
  color: var(--ink-mute);
  font-family: var(--display);

  font-size: var(--t-lg);
}

.wines-empty button {
  display: inline-block;
  margin-top: var(--s-4);
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 10px 22px;
  font-family: var(--body);
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.wines-empty button:hover {
  background: var(--ink);
  color: var(--bg);
}

.check-list { display: flex; flex-direction: column; gap: var(--s-2); }

.check-list label {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  cursor: pointer;
  padding-block: 4px;
  transition: color .2s var(--ease);
}

.check-list label:hover { color: var(--ink); }

.check-list .box {
  /* JJ-04: real checkbox — strip native styling, keep the square look */
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  width: 14px;
  height: 14px;
  border: 1px solid var(--rule);
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s var(--ease);
}

.check-list label:hover .box { border-color: var(--gold); }
.check-list .box:checked {
  border-color: var(--gold-deep);
  background-color: var(--gold-deep);
  background-image: radial-gradient(circle at center, var(--bg) 0 2.6px, transparent 3px);
}
.check-list label:has(.box:checked) { color: var(--ink); font-weight: 500; }

.check-list .num {
  margin-left: auto;
  font-family: var(--display);

  font-size: var(--t-xs);
  color: var(--ink-mute);
}

.tags { display: flex; flex-wrap: wrap; gap: var(--s-2); }

.tags a {
  font-size: var(--t-xs);
  color: var(--ink-soft);
  padding: 6px 12px;
  border: 1px solid var(--rule);
  background: var(--bg);
  transition: all .2s var(--ease);
}

.tags a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.tags a.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.tags .tags__extra { display: none; }
.tags.is-expanded .tags__extra { display: inline-flex; }

.tags__more {
  font-size: var(--t-xs);
  color: var(--gold-text);
  cursor: pointer;
  font-family: var(--display);

  margin-top: var(--s-3);
  border: none;
  background: transparent;
  padding: 0;
  transition: color .2s var(--ease);
}

.tags__more:hover { color: var(--gold-deep); }

/* Toolbar */
.cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s-3);
  border-block: 1px solid var(--rule);
  margin-bottom: var(--s-7);
}

.cat-toolbar__count {
  font-family: var(--display);

  color: var(--ink-soft);
  font-size: var(--t-sm);
}

.cat-toolbar__count strong { color: var(--ink); font-weight: 500; }

.cat-toolbar__right { display: flex; align-items: center; gap: var(--s-5); }

.cat-sort {
  background: transparent;
  border: 1px solid var(--rule);
  padding: 9px 14px;
  font: inherit;
  font-size: var(--t-xs);
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 0.06em;
}

.view-toggles { display: flex; gap: 4px; }

.view-toggles button {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s var(--ease);
}

.view-toggles button:hover { color: var(--ink); }
.view-toggles button.is-active { color: var(--gold-text); border-color: var(--rule); background: var(--bg-2); }
.view-toggles svg { width: 16px; height: 16px; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */

.product {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.product__crumbs {
  font-size: var(--t-xxs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-block: var(--s-5);
  border-bottom: 1px solid var(--rule-soft);
}

.product__crumbs a:hover { color: var(--gold-text); }
.product__crumbs span { margin-inline: var(--s-2); opacity: 0.5; }

.product__gallery {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product__gallery img {
  width: 50%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 32px 48px rgba(13,12,10,0.22));
}

.product__index {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  font-family: var(--display);

  font-size: var(--t-md);
  color: var(--gold-text);
}

.product__thumbs {
  position: absolute;
  bottom: var(--s-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--s-2);
}

.product__thumb {
  width: 46px;
  height: 56px;
  background: var(--surface);
  border: 1px solid var(--rule);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.product__thumb.is-active { border-color: var(--gold-deep); }

.product__thumb img {
  max-width: 60%;
  max-height: 80%;
  object-fit: contain;
}

.product__info { display: flex; flex-direction: column; gap: var(--s-5); padding-top: var(--s-4); }

.product__eyebrow {
  font-size: var(--t-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.product__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.product__brand {
  font-family: var(--display);

  font-size: var(--t-md);
  color: var(--ink-soft);
}

.product__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-3xl);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.product__title em { }

.product__desc {
  font-size: var(--t-md);
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 56ch;
}

.product__attrs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  padding-block: var(--s-5);
  border-block: 1px solid var(--rule);
}

.product__attr { display: flex; flex-direction: column; gap: 4px; }

.product__attr-label {
  font-size: var(--t-xxs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.product__attr-value {
  font-family: var(--display);
  font-size: var(--t-md);
  color: var(--ink);
}

.product__buy-row {
  display: flex;
  align-items: stretch;
  gap: var(--s-3);
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule);
  background: var(--surface);
}

.qty button {
  width: 44px;
  height: 52px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 18px;
  transition: color .2s var(--ease);
}

.qty button:hover { color: var(--gold-text); }

.qty input {
  width: 40px;
  height: 52px;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.qty input:focus { outline: none; }

.btn-add {
  flex: 1;
  background: var(--wine);
  color: #fff;
  border: none;
  padding: 0 var(--s-6);
  font-family: var(--body);
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
}

.btn-add:hover { background: var(--wine-deep); color: #fff; }
.btn-add .arrow { transition: transform .25s var(--ease); }
.btn-add:hover .arrow { transform: translateX(3px); }

.btn-wish {
  width: 52px;
  min-height: 52px;
  align-self: stretch;
  background: var(--surface);
  border: 1px solid var(--rule);
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.btn-wish:hover { color: var(--wine); border-color: var(--wine); }
.btn-wish.is-active { color: var(--wine); border-color: var(--wine); }
.btn-wish.is-active svg { fill: var(--wine); }
.btn-wish svg { width: 17px; height: 17px; }

.product__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.product__price-value {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--t-2xl);
  color: var(--wine);
  letter-spacing: -0.015em;
}

.product__price-unit {
  font-family: var(--display);

  font-size: var(--t-sm);
  color: var(--ink-mute);
}

.product__assurance {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  padding-top: var(--s-3);
}

.product__assurance-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.product__assurance svg { width: 16px; height: 16px; color: var(--gold-text); flex-shrink: 0; }

/* Gilles' opinie · refined callout, no border-left */
.opinie {
  position: relative;
  margin-block: clamp(3rem, 5vw, 4.5rem);
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.opinie::before {
  content: '\201C';
  position: absolute;
  top: -2.5rem;
  right: -1rem;
  font-family: var(--display);

  font-weight: 400;
  font-size: clamp(10rem, 18vw, 16rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  z-index: -1;
  pointer-events: none;
}

.opinie__portrait {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-3);
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.opinie__portrait img { width: 100%; height: 100%; object-fit: cover; }

.opinie__body { display: flex; flex-direction: column; gap: var(--s-3); }

.opinie__label {
  font-family: var(--body);
  font-size: var(--t-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-text);
  font-weight: 500;
}

.opinie__quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-xl);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.012em;
}

.opinie__quote em { }

.opinie__sig {
  font-family: var(--display);

  font-size: var(--t-md);
  color: var(--gold-text);
}

/* Detail grid */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: var(--s-8);
  border-top: 1px solid var(--rule);
}

.detail__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-xl);
  color: var(--ink);
  margin-bottom: var(--s-4);
  letter-spacing: -0.012em;
}

.detail p {
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 50ch;
}

.pairing { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }

.pairing li {
  font-size: var(--t-xs);
  padding: 6px 12px;
  background: var(--bg-2);
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  letter-spacing: 0.04em;
}

/* ============================================================
   BOUTIQUE PAGE
   ============================================================ */

.boutique-hero {
  position: relative;
  height: clamp(440px, 65vh, 660px);
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 80% 10%, var(--wash-rose), transparent 60%),
    var(--bg);
}

.boutique-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Photo fades into cream at the foot so dark text stays legible. */
.boutique-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,248,241,0) 0%, rgba(251,248,241,0) 38%, rgba(251,248,241,0.86) 88%, var(--bg) 100%);
}

.boutique-hero__content {
  position: absolute;
  inset: auto var(--gutter) clamp(2.5rem, 5vw, 4rem) var(--gutter);
  z-index: 2;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  max-width: var(--max);
  margin-inline: auto;
}

.boutique-hero__eyebrow {
  font-family: var(--display);

  font-size: var(--t-lg);
  letter-spacing: 0;
  text-transform: none;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.boutique-hero__eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--wine-soft);
}

.boutique-hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-4xl);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.boutique-hero__title em { color: var(--wine); }

.boutique-info {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.hours-list { display: flex; flex-direction: column; }

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--rule-soft);
  gap: var(--s-4);
}

.hours-row:last-child { border-bottom: none; }

.hours-row.is-today {
  background: var(--bg-2);
  margin-inline: calc(var(--s-4) * -1);
  padding-inline: var(--s-4);
  border-bottom-color: var(--gold);
}

.hours-row__day {
  font-family: var(--display);
  font-size: var(--t-lg);
  color: var(--ink);
}

.hours-row__time {
  font-family: var(--body);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.hours-row.is-today .hours-row__time { color: var(--wine); font-weight: 500; }
.hours-row__closed { color: var(--ink-mute); }

.address-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-2xl);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-5);
}

.address-lines {
  font-size: var(--t-md);
  color: var(--ink-soft);
  line-height: 1.8;
}

.address-lines strong {
  display: block;
  margin-top: var(--s-3);
  color: var(--gold-text);
  font-family: var(--display);

  font-weight: 400;
}

.address-lines a { color: var(--wine); border-bottom: 1px solid var(--wine); padding-bottom: 1px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-3);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.gallery__cell {
  overflow: hidden;
  background: var(--bg-3);
}

.gallery__cell--tall { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery__cell--wide { grid-column: span 8; aspect-ratio: 16 / 10; }
.gallery__cell--med  { grid-column: span 4; aspect-ratio: 4 / 5; }

.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.gallery__cell:hover img { transform: scale(1.04); }

/* ============================================================
   ENTRANCE REVEAL
   ============================================================ */

/* Reveal enhances an already-visible default: without JS (or in a headless
   render) content shows; with JS it starts lifted and settles in. */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
  will-change: opacity, transform;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}
