:root {
  --cream: #fdfbf7;
  --cream-2: #f4eee4;
  --paper: #fdfbf7;
  --gold: #c5a069;
  --gold-dark: #a8873e;
  --brown: #3e2723;
  --brown-soft: #5c4332;
  --ink: #3e2723;
  --muted: #6d6763;
  --dark: #1f150e;
  --white: #fffdf9;
  --radius: 14px;
  --container: 1200px;
  --header-h: 96px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Outfit", system-ui, sans-serif;
  --gold-soft: #d4b87a;
  --gold-btn: #c9a86c;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; color: var(--brown); margin: 0 0 0.75rem; }
p { margin: 0 0 1rem; }
em { font-style: italic; color: var(--gold-dark); }

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section { padding: 5.5rem 0; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.eyebrow--center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
  margin-bottom: 0.9rem;
}

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  max-width: 16ch;
  color: var(--brown);
}

.section-title--center {
  text-align: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  border: 1.5px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn--brown {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
  border-radius: 999px;
  font-size: 0.82rem;
  padding: 0.7rem 1.15rem;
}

.btn--brown:hover {
  background: #2a1a16;
  border-color: #2a1a16;
  color: #fff;
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold-btn);
  color: #fff;
  border-color: var(--gold-btn);
  border-radius: 10px;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--brown);
  border-color: rgba(59, 41, 24, 0.35);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* Header */
.site-header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header--overlay {
  position: absolute;
  background: transparent;
  color: #fff;
}

.site-header--overlay.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(31, 21, 14, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.site-header--solid {
  position: sticky;
  top: 0;
  background: var(--dark);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.admin-bar .site-header--solid {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header--solid {
    top: 46px;
  }
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.site-logo__img,
.site-logo img {
  width: 86px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.footer-logo {
  display: inline-flex;
}

.footer-logo__img {
  width: 84px;
  height: auto;
  display: block;
}

.site-nav { justify-self: center; }

.logo-seal {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #f8f1e6 0%, #efe2cc 100%);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.22);
}

.logo-seal__ornament {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed rgba(168, 134, 62, 0.45);
  pointer-events: none;
}

.logo-seal--sm {
  width: 64px;
  height: 64px;
  box-shadow: none;
}

.logo-seal__ring {
  text-align: center;
  font-family: var(--font-display);
  color: var(--gold-dark);
  line-height: 1.1;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.logo-seal__ring strong {
  display: block;
  font-size: 0.82rem;
  color: var(--brown);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.logo-seal__ring em {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.48rem;
  font-style: normal;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.nav-list > .menu-item {
  position: relative;
  list-style: none;
}

.nav-list > .menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  position: relative;
  padding: 0.45rem 0;
  transition: opacity 0.2s ease;
  opacity: 0.92;
  white-space: nowrap;
}

.nav-list > .menu-item > a:hover,
.nav-list > .current-menu-item > a,
.nav-list > .current-menu-ancestor > a {
  opacity: 1;
}

.nav-label {
  position: relative;
  display: inline-block;
}

.nav-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-list > .menu-item > a:hover .nav-label::after,
.nav-list > .current-menu-item > a .nav-label::after {
  transform: scaleX(1);
}

.nav-caret {
  width: 0.55rem;
  height: 0.55rem;
  display: inline-block;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.85;
  flex: 0 0 auto;
}

.nav-list > .menu-item-has-children > a {
  padding-bottom: 0.85rem;
  margin-bottom: -0.4rem;
}

.nav-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 200px;
  padding: 0.55rem 0;
  margin-top: 0;
  background: rgba(31, 21, 14, 0.97);
  border: 1px solid rgba(201, 168, 108, 0.22);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  z-index: 30;
}

/* Invisible bridge so cursor can reach submenu */
.nav-list > .menu-item-has-children > .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-list > .menu-item-has-children:hover > .sub-menu,
.nav-list > .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-list .sub-menu a {
  display: block;
  padding: 0.6rem 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 400;
  white-space: nowrap;
}

.nav-list .sub-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.65rem;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 0.15rem;
}

.header-social__link {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-social__link:hover {
  color: var(--gold-soft);
  background: rgba(201, 168, 108, 0.12);
  transform: translateY(-1px);
}

.site-header--solid .header-social__link {
  color: var(--brown);
}

.site-header--solid .header-social__link:hover {
  color: var(--gold);
  background: rgba(201, 168, 108, 0.14);
}

.header-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.header-icon:hover {
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.btn--collab {
  background: var(--gold-btn);
  color: var(--brown);
  border-color: var(--gold-btn);
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
}

.btn--collab:hover {
  background: #d4b57a;
  border-color: #d4b57a;
  color: var(--brown);
  transform: translateY(-1px);
}

.header-search {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(31, 21, 14, 0.96);
  padding: 0.85rem 0 1.1rem;
}

.header-search[hidden] { display: none !important; }

.header-search__form {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
}

.header-search__form input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font: inherit;
}

.header-search__form input::placeholder { color: rgba(255, 255, 255, 0.55); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  justify-self: end;
  position: relative;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-extra {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 5rem;
  overflow: hidden;
  color: #fff;
  background: #1a120c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.78) 0%, rgba(18, 12, 8, 0.45) 48%, rgba(18, 12, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(18, 12, 8, 0.35) 0%, transparent 28%, rgba(18, 12, 8, 0.45) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  max-width: 11ch;
  margin-bottom: 1.25rem;
  color: #fff;
  font-weight: 600;
}

.hero-title .script {
  display: block;
  font-family: var(--font-script);
  font-size: 0.72em;
  font-weight: 400;
  color: var(--gold-soft);
  line-height: 1.1;
  margin-top: 0.15rem;
}

.hero-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero .btn--gold {
  border-radius: 999px;
  color: var(--brown);
  background: var(--gold-btn);
  border-color: var(--gold-btn);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
}

.hero .btn--ghost {
  border-radius: 999px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
}

.hero .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-badge {
  position: absolute;
  right: max(4vw, calc((100% - var(--container)) / 2 + 1rem));
  bottom: 12%;
  z-index: 2;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(248, 241, 230, 0.94);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--brown);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-badge span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

/* Features â€” floating card under hero */
.features {
  position: relative;
  z-index: 5;
  padding: 0 0 1rem;
  margin-top: -3.5rem;
  background: transparent;
  border: 0;
}

.features-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(62, 39, 35, 0.1);
  padding: 1.6rem 0.5rem;
  overflow: hidden;
}

.feature {
  text-align: center;
  padding: 1rem 1.25rem;
  position: relative;
}

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(197, 160, 105, 0.28);
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.85rem;
  color: var(--brown);
}

.feature-icon svg { width: 100%; height: 100%; }

.feature h2 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.35rem;
  color: var(--brown);
  line-height: 1.3;
}

.feature p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  font-weight: 400;
}

/* Categories */
.categories {
  padding-top: 4.5rem;
}

.categories .section-title {
  margin-bottom: 2.4rem;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.category-card {
  position: relative;
  display: block;
  min-height: 380px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--brown);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 12, 0.28);
}

.category-card:hover img { transform: scale(1.04); }

.category-panel {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(78%, 280px);
  background: rgba(255, 252, 247, 0.94);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 1.6rem 1.25rem 1.4rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.category-panel__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.7rem;
  color: var(--brown);
  display: grid;
  place-items: center;
}

.category-panel__icon svg { width: 100%; height: 100%; }

.category-panel h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--brown);
  letter-spacing: 0;
  text-transform: none;
}

.category-panel h3 strong {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.category-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-panel .btn {
  pointer-events: none;
}

/* About */
.about {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.about-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
  margin: -0.35rem 0 1.35rem;
}

.about-copy .section-title {
  margin-bottom: 0.15rem;
  max-width: none;
}

.about-copy > p:not(.eyebrow):not(.about-script) {
  color: var(--muted);
  font-weight: 400;
  max-width: 44ch;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-copy .btn {
  margin-top: 0.75rem;
}

.about-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 18px;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 60px rgba(253, 251, 247, 0.35);
  pointer-events: none;
}

/* Why choose */
.why {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.why .section-title {
  margin-bottom: 2.75rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  color: var(--brown);
}

.why-icon svg { width: 100%; height: 100%; }

.why-item h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--brown);
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Stores */
.stores {
  background: #f3eee6;
  padding: 5rem 0;
}

.stores-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}

.stores-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.25rem 2rem;
  box-shadow: 0 14px 40px rgba(62, 39, 35, 0.06);
}

.stores-card .section-title {
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.stores-card .section-title em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 0.85em;
  color: var(--gold);
  display: inline-block;
}

.store-list {
  margin: 0 0 1.75rem;
  display: grid;
  gap: 1.25rem;
}

.store-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(197, 160, 105, 0.28);
}

.store-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.store-item__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-top: 0.15rem;
}

.store-item__icon svg { width: 100%; height: 100%; }

.store-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--brown);
}

.store-item p {
  margin: 0.12rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.store-hours {
  font-size: 0.84rem !important;
  color: #8a8078 !important;
}

.stores-map {
  min-height: 480px;
  height: 100%;
  background: #e8e2d8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(62, 39, 35, 0.06);
}

.semico-stores-map {
  width: 100%;
  height: 100%;
  min-height: 480px;
  z-index: 1;
}

.semico-stores-map .leaflet-popup-content-wrapper {
  border-radius: 10px;
  font-family: var(--font-body);
  color: var(--brown);
}

.semico-stores-map .leaflet-popup-content {
  margin: 0.75rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.semico-stores-map .leaflet-popup-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.semico-stores-map .leaflet-div-icon.semico-map-marker-wrap {
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.semico-map-pin {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 0;
  pointer-events: none;
}

.semico-map-pin img {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  object-fit: contain;
  padding: 3px;
  background: #fffdf9;
  border: 2px solid var(--gold-btn);
  border-radius: 50%;
  box-shadow:
    0 6px 16px rgba(31, 21, 14, 0.28),
    0 0 0 3px rgba(255, 255, 255, 0.85);
}

.semico-map-pin__tip {
  display: block;
  width: 0;
  height: 0;
  margin: -1px auto 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--gold-btn);
  filter: drop-shadow(0 2px 2px rgba(31, 21, 14, 0.2));
}

.semico-map-pin-fallback {
  display: block;
  width: 28px;
  height: 28px;
  background: var(--gold-btn);
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(31, 21, 14, 0.35);
}

.stores-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(0.1) saturate(0.85) contrast(0.96);
}

/* Partner */
.partner-banner {
  padding: 1.75rem 0;
  background: #f7f1e8;
  border-top: 1px solid rgba(197, 160, 105, 0.18);
  border-bottom: 1px solid rgba(197, 160, 105, 0.18);
}

.partner-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
}

.partner-media {
  border-radius: 12px;
  overflow: hidden;
}

.partner-media img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  display: block;
}

.partner-copy h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  max-width: 24ch;
  margin-bottom: 0.4rem;
  color: var(--brown);
}

.partner-copy .script {
  font-family: var(--font-script);
  color: var(--gold);
  font-weight: 400;
}

.partner-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42ch;
}

/* Newsletter */
.newsletter {
  padding: 1.5rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(197, 160, 105, 0.16);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.newsletter-copy {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--brown);
}

.newsletter-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex: 0 0 auto;
}

.newsletter-icon svg { width: 100%; height: 100%; }

.newsletter-copy p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  gap: 0.65rem;
  flex: 1 1 360px;
  max-width: 520px;
  margin-left: auto;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(62, 39, 35, 0.15);
  background: #faf7f2;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--brown);
}

.newsletter-form input::placeholder {
  color: #9a9188;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer */
.site-footer {
  background: #2b1e16;
  color: rgba(251, 247, 241, 0.78);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand .logo-seal {
  background: linear-gradient(160deg, #f8f1e6 0%, #efe2cc 100%);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 28ch;
  color: rgba(251, 247, 241, 0.62);
  line-height: 1.55;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links,
.footer-stores {
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-stores a:hover,
.footer-social a:hover {
  color: var(--gold-soft);
}

.footer-stores li {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(251, 247, 241, 0.62);
}

.footer-stores strong {
  color: rgba(251, 247, 241, 0.9);
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 108, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: rgba(201, 168, 108, 0.12);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(196, 163, 90, 0.18);
  padding: 1.1rem 0;
  font-size: 0.8rem;
  color: rgba(251, 247, 241, 0.48);
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom a:hover { color: var(--gold); }

.footer-cookie-link {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-cookie-link:hover { color: var(--gold); }

.footer-legal {
  border-top: 1px solid rgba(196, 163, 90, 0.12);
  padding: 1rem 0 1.35rem;
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(251, 247, 241, 0.55);
}

.footer-legal a {
  color: rgba(251, 247, 241, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal a:hover { color: var(--gold); }

.footer-legal p { margin: 0 0 0.55rem; }
.footer-legal p:last-child { margin-bottom: 0; }

.footer-legal__note {
  color: rgba(251, 247, 241, 0.42);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 10050;
  max-width: 760px;
  margin-inline: auto;
  background: #fffdf9;
  color: var(--brown);
  border: 1px solid rgba(196, 163, 90, 0.35);
  box-shadow: 0 18px 50px rgba(31, 21, 14, 0.22);
  padding: 1.15rem 1.25rem;
}

.cookie-banner[hidden] { display: none !important; }

.cookie-banner__inner {
  display: grid;
  gap: 1rem;
}

.cookie-banner__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown);
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.cookie-banner__text a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.cookie-banner__btn {
  min-width: 9.5rem;
}

.cookie-settings-btn {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 10040;
  border: 1px solid rgba(196, 163, 90, 0.45);
  background: #fffdf9;
  color: var(--brown);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(31, 21, 14, 0.12);
}

.cookie-settings-btn[hidden] { display: none !important; }
.cookie-settings-btn:hover { border-color: var(--gold); color: var(--gold-dark); }

@media (min-width: 720px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

/* FAQ */
.faq-section {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.faq-wrap {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(196, 163, 90, 0.28);
  padding: 0;
}

.faq-item__q {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.3;
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__q::after {
  content: "+";
  float: right;
  color: var(--gold-dark);
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.faq-item[open] .faq-item__q::after { content: "–"; }

.faq-item__a {
  padding: 0 1.2rem 1.15rem;
}

.faq-item__a p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 300;
}

.faq-cta {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 163, 90, 0.25);
  text-align: center;
}

.faq-cta p {
  margin: 0 0 1rem;
  color: var(--muted);
}

/* Inner pages */
.page-hero {
  padding: 3.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.15);
  background: var(--cream);
}

.page-hero .section-title {
  max-width: 18ch;
  margin-bottom: 0.75rem;
}

.page-hero__lead {
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.page-content { padding-top: 2.5rem; }

.partners-benefits {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.partners-contact {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.partners-contact__card {
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 14px 40px rgba(62, 39, 35, 0.06);
  display: grid;
  gap: 1.5rem;
}

.partners-contact__card .section-title {
  max-width: none;
  margin-bottom: 0.75rem;
}

.partners-contact__card > div > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 54ch;
  margin: 0;
}

.partners-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.partners-contact__extra {
  border-top: 1px solid rgba(197, 160, 105, 0.25);
  padding-top: 1.25rem;
  color: var(--muted);
}

/* Partners page */
.partners-hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.partners-hero .section-title {
  max-width: 22ch;
  margin-bottom: 2.5rem;
}

.partners-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.partners-benefit { text-align: center; padding: 0.5rem; }

.partners-benefit__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.partners-benefit__icon svg { width: 100%; height: 100%; }

.partners-benefit h2 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  color: var(--brown);
}

.partners-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.partners-lead {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.partners-lead__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}

.partners-lead__visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 560px;
}

.partners-lead__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners-lead__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(20, 12, 8, 0.15) 0%, rgba(20, 12, 8, 0.78) 100%);
}

.partners-lead__overlay .eyebrow { color: var(--gold-soft); }
.partners-lead__overlay .section-title {
  color: #fff;
  max-width: 14ch;
  margin-bottom: 0.35rem;
}

.partners-lead__script {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold-soft);
  margin: 0 0 1rem;
  line-height: 1;
}

.partners-lead__overlay > p:not(.eyebrow):not(.partners-lead__script) {
  color: rgba(255, 255, 255, 0.86);
  max-width: 36ch;
  margin-bottom: 1.25rem;
}

.partners-lead__list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partners-lead__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.partners-lead__list span {
  color: var(--gold-soft);
  font-size: 1rem;
}

.partners-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 16px 40px rgba(62, 39, 35, 0.08);
}

.partners-form-card__title {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0 0 1.5rem;
}

.semico-cf7 .wpcf7-form { display: grid; gap: 0.85rem; }

.semico-cf7 label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: var(--brown);
  font-weight: 500;
}

.semico-cf7 input[type="text"],
.semico-cf7 input[type="email"],
.semico-cf7 input[type="tel"],
.semico-cf7 textarea {
  width: 100%;
  border: 1px solid rgba(62, 39, 35, 0.12);
  background: #f6f1ea;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--brown);
}

.semico-cf7 textarea { min-height: 120px; resize: vertical; }

.semico-cf7 input:focus,
.semico-cf7 textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.semico-cf7 .wpcf7-acceptance { margin: 0.25rem 0 0.5rem; }
.semico-cf7 .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.semico-cf7 .wpcf7-list-item-label {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 400;
}

.semico-cf7 .wpcf7-submit {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: var(--gold-btn);
  color: #fff;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.semico-cf7 .wpcf7-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.semico-cf7 .wpcf7-response-output {
  margin: 0.75rem 0 0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
}

.partners-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.partners-product { display: block; text-align: center; }

.partners-product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.75rem;
}

.partners-product h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  color: var(--brown);
}

.content-narrow { max-width: 760px; }

.entry { font-size: 1.05rem; color: var(--brown-soft); font-weight: 300; }
.entry h2, .entry h3 { margin-top: 2rem; }

/* About page */
.about-page-hero {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.about-page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-page-hero__copy .section-title {
  max-width: 16ch;
  margin-bottom: 1.35rem;
}

.about-page-hero__text {
  display: grid;
  gap: 0.85rem;
  max-width: 42ch;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 300;
}

.about-page-hero__text p { margin: 0; }

.about-page-hero__hint {
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.about-page-hero__hint a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-page-hero__media {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(62, 39, 35, 0.12);
}

.about-page-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.about-values {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-value { text-align: center; padding: 0.35rem 0.5rem; }

.about-value__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.about-value__icon svg { width: 100%; height: 100%; }

.about-value h2 {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.55rem;
  color: var(--brown);
  line-height: 1.35;
}

.about-value p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-journey {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.about-timeline {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(196, 163, 90, 0.55);
}

.about-timeline li {
  position: relative;
  padding-top: 2rem;
  text-align: center;
}

.about-timeline li::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px var(--cream);
}

.about-timeline__year {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.45rem;
}

.about-timeline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.45rem;
}

.about-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 28ch;
  margin-inline: auto;
}

.about-promise {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.about-promise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-promise__copy .section-title {
  max-width: 14ch;
  margin-bottom: 1rem;
}

.about-promise__copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 300;
}

.about-promise__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
}

.about-promise__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--brown);
  line-height: 1.4;
}

.about-promise__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.about-promise__media {
  border-radius: 4px;
  overflow: hidden;
}

.about-promise__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-products {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.about-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.about-product {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  min-height: 220px;
  color: #fff;
  text-decoration: none;
}

.about-product img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 8, 0.1) 20%, rgba(20, 12, 8, 0.72) 100%);
}

.about-product span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: 220px;
  padding: 1.25rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-product:hover img { transform: scale(1.04); }

/* Product catalog listing (no single links) */
.catalog-hero {
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

.catalog-hero__inner { text-align: center; }

.catalog-hero .section-title {
  margin-bottom: 0.85rem;
}

.catalog-hero__lead {
  margin: 0 auto;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
}

.catalog-hero__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.catalog-group {
  margin-bottom: 3rem;
}

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

.catalog-group .eyebrow {
  margin-bottom: 1.25rem;
}

.catalog-grid-section {
  padding-top: 1.5rem;
  padding-bottom: 5rem;
}

.product-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(196, 163, 90, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.95rem;
  background: #f3d4d0;
}

.product-card--savory .product-card__head {
  background: #e6dccf;
}

.product-card__cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
}

.product-card__weight {
  flex-shrink: 0;
  background: var(--brown);
  color: #f7f1ea;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.32rem 0.6rem;
  border-radius: 6px;
  line-height: 1;
}

.product-card__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
  padding: 1rem 0.95rem 0.9rem;
  align-items: start;
  flex: 1;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--brown);
}

.product-card__block {
  margin-bottom: 0.75rem;
}

.product-card__block:last-child { margin-bottom: 0; }

.product-card__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.product-card__block p {
  margin: 0 0 0.15rem;
  color: var(--brown);
  font-size: 0.84rem;
  line-height: 1.4;
  font-weight: 400;
}

.product-card__media {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  align-self: stretch;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.product-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.95rem;
  background: #efe6da;
  margin-top: auto;
}

.product-card__foot-left p {
  margin: 0;
  color: var(--brown);
  font-size: 0.9rem;
  line-height: 1.4;
}

.product-card__energy {
  font-weight: 400;
  margin-bottom: 0.15rem !important;
}

.product-card__energy strong { font-weight: 700; }

.product-card__storage {
  font-size: 0.88rem !important;
}

.product-card__code {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
}

.catalog-empty {
  text-align: center;
  color: var(--muted);
  margin: 2rem 0;
}

.catalog-footer {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Partner stores (by city) */
.partners-stores-hero {
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

.partners-stores-hero__inner { text-align: center; }

.partners-stores-hero .section-title { margin-bottom: 0.85rem; }

.partners-stores-hero__lead {
  margin: 0 auto;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
}

.partners-stores-list {
  padding-top: 1.5rem;
  padding-bottom: 5rem;
}

.partners-stores-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

.partners-city .eyebrow {
  margin-bottom: 1.25rem;
}

.partners-city__stores {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(196, 163, 90, 0.35);
}

.partners-store {
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(196, 163, 90, 0.22);
}

.partners-store__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.25;
}

.partners-store__address,
.partners-store__note {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.45;
}

.partners-store__note {
  font-size: 0.86rem;
  color: var(--gold-dark);
}

.partners-stores-cta {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(196, 163, 90, 0.25);
  text-align: center;
}

.partners-stores-cta p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay { transition-delay: 0.15s; }

/* Hide CookieAdmin if plugin still injects markup */
.cookieadmin_modal,
.cookieadmin-wrapper,
#cookieadmin,
[class*="cookieadmin_"],
.cookieadmin_consent {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Responsive */
@media (max-width: 980px) {
  :root {
    --header-h: 64px;
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .section {
    padding: 3.5rem 0;
  }

  .header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    height: var(--header-h);
    gap: 0.5rem;
    padding: 0;
    position: relative;
  }

  .site-logo {
    flex: 0 0 auto;
    z-index: 2;
    display: inline-flex;
    align-items: center;
  }

  .site-logo__img,
  .site-logo img {
    width: 52px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin-left: auto;
    z-index: 2;
    height: 100%;
  }

  .header-cta,
  .header-social {
    display: none;
  }

  .nav-toggle {
    display: block;
    width: 44px;
    height: 44px;
    padding: 11px;
  }

  .site-header--overlay.is-scrolled,
  .site-header--solid,
  .site-header.nav-is-open.site-header--overlay,
  .site-header.nav-is-open.site-header--overlay.is-scrolled,
  .site-header.nav-is-open.site-header--solid {
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    background: #1a120c;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    transform: none !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  }

  .site-header--overlay.is-scrolled {
    background: rgba(31, 21, 14, 0.96);
  }

  .site-header--solid:not(.nav-is-open) {
    position: sticky;
    top: 0 !important;
    background: var(--dark);
  }

  .admin-bar .site-header--solid:not(.nav-is-open),
  .admin-bar .site-header--overlay.is-scrolled,
  .admin-bar .site-header.nav-is-open.site-header--overlay,
  .admin-bar .site-header.nav-is-open.site-header--solid {
    top: 46px !important;
  }

  .site-nav {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    z-index: 120;
    background: #1a120c;
    padding: 0.35rem 1.25rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .admin-bar .site-nav {
    top: calc(var(--header-h) + 46px);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex-wrap: nowrap;
  }

  .nav-list > .menu-item > a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 0.15rem;
    font-size: 1.12rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: normal;
  }

  .nav-list > .menu-item-has-children > a {
    padding-bottom: 0.95rem;
    margin-bottom: 0;
  }

  .nav-label::after {
    display: none;
  }

  .nav-list .sub-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0.15rem 0 0.65rem 0.85rem;
    min-width: 0;
    width: 100%;
    display: none;
    border-radius: 0;
  }

  .nav-list > .menu-item-has-children > .sub-menu::before {
    display: none;
  }

  .nav-list > .menu-item-has-children.is-expanded > .sub-menu,
  .nav-list > .menu-item-has-children:hover > .sub-menu,
  .nav-list > .menu-item-has-children:focus-within > .sub-menu {
    display: block !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-list > .menu-item-has-children:not(.is-expanded) > .sub-menu {
    display: none !important;
  }

  .nav-list > .menu-item-has-children.is-expanded > a .nav-caret {
    transform: rotate(225deg) translateY(-1px);
  }

  .nav-list .sub-menu a {
    display: block;
    padding: 0.75rem 0.15rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.02rem;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent !important;
  }

  .nav-list .sub-menu .menu-item {
    list-style: none;
  }

  .mobile-nav-extra {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-social {
    display: flex;
    gap: 0.65rem;
  }

  .mobile-nav-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 168, 108, 0.35);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-soft);
  }

  .mobile-nav-cta {
    width: 100%;
    border-radius: 999px;
    color: var(--brown);
  }

  .header-search {
    padding: 0.75rem 0 1rem;
  }

  .header-search__form {
    flex-direction: column;
    width: 100%;
  }

  .header-search__form .btn {
    width: 100%;
  }

  .hero-grid,
  .about-grid,
  .stores-layout,
  .category-grid,
  .footer-grid,
  .partner-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 1.75rem) 0 3.25rem;
  }

  .hero-grid {
    width: min(var(--container), calc(100% - 1.5rem));
    gap: 1.25rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    max-width: none;
  }

  .hero-text {
    font-size: 0.98rem;
    max-width: none;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-bg img {
    object-position: center center;
  }

  .section-title,
  .stores-card .section-title {
    max-width: none;
    font-size: clamp(1.85rem, 7vw, 2.4rem);
  }

  .features {
    margin-top: -1.75rem;
    padding-bottom: 0.5rem;
  }

  .features-card,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature:nth-child(2)::after,
  .feature:nth-child(4)::after { display: none; }

  .feature {
    padding: 0.85rem 0.75rem;
  }

  .category-panel { width: min(92%, 320px); }

  .about-media::after,
  .hero-badge,
  .partner-media { display: none; }

  .newsletter-form {
    margin-left: 0;
    max-width: none;
    width: 100%;
  }

  .partners-benefits-grid,
  .partners-lead__grid,
  .partners-products__grid,
  .about-page-hero__grid,
  .about-promise__grid,
  .about-products__grid,
  .catalog-grid,
  .partners-stores-cities {
    grid-template-columns: 1fr;
  }

  .product-card__body {
    grid-template-columns: 1fr;
  }

  .about-values__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .about-timeline {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-timeline::before { display: none; }

  .partners-lead__visual,
  .partners-lead__overlay {
    min-height: 0;
  }

  .partners-lead__visual {
    min-height: 360px;
  }

  .partners-lead__overlay {
    min-height: 360px;
    padding: 1.5rem;
  }

  .partners-form-card {
    padding: 1.4rem 1.15rem 1.25rem;
  }

  .page-hero,
  .partners-hero,
  .catalog-hero,
  .about-page-hero,
  .partners-stores-hero {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .page-hero__lead,
  .catalog-hero__lead,
  .about-page-hero__text,
  .partners-stores-hero__lead {
    max-width: none;
    font-size: 0.98rem;
  }

  .catalog-hero__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
    width: auto;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .features-card,
  .why-grid,
  .category-grid,
  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .feature:not(:last-child)::after { display: none; }
  .feature {
    border-bottom: 1px solid rgba(197, 160, 105, 0.2);
    padding: 1rem 0.85rem;
  }
  .feature:last-child { border-bottom: 0; }

  .category-card { min-height: 280px; }

  .newsletter-inner { flex-direction: column; align-items: stretch; }
  .newsletter-form { flex-direction: column; }

  .partners-benefits-grid,
  .partners-products__grid,
  .about-page-hero__grid,
  .about-promise__grid,
  .about-promise__list,
  .about-products__grid,
  .catalog-grid,
  .partners-stores-cities,
  .product-card-list {
    grid-template-columns: 1fr;
  }

  .product-card__media {
    order: -1;
    max-width: 240px;
    margin-inline: auto;
  }

  .product-card__media img {
    min-height: 0;
    aspect-ratio: 1;
  }

  .product-card__foot {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .product-card__code {
    white-space: normal;
  }

  .about-page-hero__media img {
    aspect-ratio: 4 / 3;
  }

  .partners-lead__visual,
  .partners-lead__overlay {
    min-height: 320px;
  }

  .entry,
  .content-narrow {
    overflow-wrap: anywhere;
  }

  .entry table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-nav,
  .nav-toggle span {
    transition: none;
  }
}

