@import url(https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400..700;1,400..700&family=Schibsted+Grotesk:wght@400;500;600;700&family=Noto+Sans+Armenian:wght@400;500;600;700&family=Noto+Serif+Armenian:ital,wght@0,400;0,500;0,600;1,400&display=swap);
@charset "UTF-8";
:root {
  --cream-50: #ffffff;
  --cream-100: #f7f5fb;
  --cream-200: #ece8f4;
  --cream-300: #d4cce4;
  --cream-400: #ada3c4;
  --forest-900: #221149;
  --forest-800: #321a6a;
  --forest-700: #432689;
  --forest-600: #5b3aaa;
  --forest-500: #7c5fc4;
  --forest-200: #d6c8ee;
  --burgundy-900: #4d6a18;
  --burgundy-800: #6f9a26;
  --burgundy-700: #82b22e;
  --burgundy-500: #a3cd5a;
  --olive-700: #6f9a26;
  --gold-500: #f0bf36;
  --sky-700: #2a7fb6;
  --sky-500: #4ea7d8;
  --sky-300: #9fcfee;
  --ink-900: #1a1730;
  --ink-700: #3a3457;
  --ink-500: #6b6580;
  --ink-300: #a39db8;
  --line: #91d1ea;
  --bg: var(--cream-100);
  --bg-deep: var(--cream-200);
  --paper: #faf5e8;
  --font-sans: "Schibsted Grotesk", "Noto Sans Armenian", "Inter", system-ui, sans-serif;
  --font-display: "Fraunces", "Noto Serif Armenian", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 28px;
  --r-pill: 999px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--forest-900);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest-800);
  color: var(--cream-100);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 2px;
}
.nav a:hover {
  color: var(--forest-800);
}
.nav a.active {
  color: var(--forest-900);
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--burgundy-800);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 18px;
}
.header-contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--forest-900);
  padding: 7px 14px 7px 10px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  background: transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.header-contact__phone:hover {
  background: var(--cream-200);
  border-color: rgba(50, 26, 106, 0.15);
  color: var(--forest-900);
}
.header-contact__phone:hover .header-contact__icon {
  transform: rotate(-12deg) scale(1.08);
}
.header-contact__icon {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  color: var(--burgundy-800);
  transition: transform 0.35s cubic-bezier(0.6, -0.15, 0.35, 1.25);
}
.header-contact__icon svg {
  width: 100%;
  height: 100%;
}
.header-contact__divider {
  width: 1px;
  height: 20px;
  background: rgba(50, 26, 106, 0.2);
}
.header-contact__socials {
  display: inline-flex;
  gap: 6px;
}
.header-contact__social {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-900);
  background: var(--cream-200);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.35s cubic-bezier(0.6, -0.15, 0.35, 1.4), box-shadow 0.3s ease;
}
.header-contact__social svg {
  width: 20px;
  height: 20px;
}
.header-contact__social:hover {
  background: var(--forest-800);
  color: var(--cream-50);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -6px rgba(50, 26, 106, 0.55);
}
.header-contact__social:active {
  transform: translateY(0) scale(0.94);
}

@media (max-width: 1024px) {
  .header-contact__phone-num {
    display: none;
  }
  .header-contact__phone {
    padding: 8px;
    width: 34px;
    height: 34px;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream-200);
  }
  .header-contact__phone:hover {
    background: var(--forest-800);
    color: var(--cream-50);
  }
  .header-contact__phone:hover .header-contact__icon {
    color: var(--cream-50);
  }
  .header-contact__divider {
    display: none;
  }
}
@media (max-width: 640px) {
  .header-contact {
    gap: 0;
    margin-right: 8px;
  }
  .header-contact__socials, .header-contact__divider {
    display: none;
  }
}
.lang-switch {
  display: inline-flex;
  background: var(--cream-200);
  border-radius: var(--r-pill);
  padding: 3px;
}
.lang-switch a, .lang-switch button {
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  color: var(--ink-500);
  display: inline-block;
}
.lang-switch a.active, .lang-switch button.active {
  background: var(--forest-800);
  color: var(--cream-50);
}

.menu-toggle {
  display: none;
}

@media (max-width: 880px) {
  /* Solid header on mobile — semi-transparent + backdrop-filter renders
     awkwardly behind the opened fullscreen nav. */
  .site-header {
    background: var(--cream-100);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--cream-200);
    border: 1px solid rgba(50, 26, 106, 0.2509803922);
    color: var(--forest-900);
    cursor: pointer;
    transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.55s cubic-bezier(0.65, -0.25, 0.35, 1.45), box-shadow 0.35s ease;
  }
  .menu-toggle:hover {
    background: var(--cream-100);
    box-shadow: 0 4px 14px -8px rgba(50, 26, 106, 0.55);
  }
  .menu-toggle__bars {
    position: relative;
    width: 18px;
    height: 14px;
    display: block;
  }
  .menu-toggle__bars span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transform-origin: 50% 50%;
    transition: transform 0.45s cubic-bezier(0.7, 0.05, 0.3, 1), top 0.35s cubic-bezier(0.7, 0.05, 0.3, 1) 0.05s, bottom 0.35s cubic-bezier(0.7, 0.05, 0.3, 1) 0.05s, opacity 0.25s ease, background-color 0.35s ease;
  }
  .menu-toggle__bars span:nth-child(1) {
    top: 0;
  }
  .menu-toggle__bars span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-toggle__bars span:nth-child(3) {
    bottom: 0;
  }
  .menu-toggle.is-open {
    background: var(--forest-800);
    border-color: var(--forest-800);
    color: var(--cream-50);
    transform: rotate(180deg);
    box-shadow: 0 8px 20px -10px rgba(20, 50, 35, 0.65);
  }
  .menu-toggle.is-open .menu-toggle__bars span {
    transition: transform 0.45s cubic-bezier(0.7, 0.05, 0.3, 1) 0.05s, top 0.35s cubic-bezier(0.7, 0.05, 0.3, 1), bottom 0.35s cubic-bezier(0.7, 0.05, 0.3, 1), opacity 0.25s ease, background-color 0.35s ease;
  }
  .menu-toggle.is-open .menu-toggle__bars span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .menu-toggle.is-open .menu-toggle__bars span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }
  .menu-toggle.is-open .menu-toggle__bars span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  .menu-toggle:active {
    transform: scale(0.94);
  }
  .menu-toggle.is-open:active {
    transform: rotate(180deg) scale(0.94);
  }
  .nav.open {
    display: flex;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--cream-100);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    z-index: 40;
    animation: nav-fade-in 0.35s ease both;
  }
  .nav.open a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    opacity: 0;
    transform: translateY(8px);
    animation: nav-item-in 0.4s ease forwards;
  }
  .nav.open a:nth-child(1) {
    animation-delay: 0.08s;
  }
  .nav.open a:nth-child(2) {
    animation-delay: 0.16s;
  }
  .nav.open a:nth-child(3) {
    animation-delay: 0.24s;
  }
  .nav.open a:nth-child(4) {
    animation-delay: 0.32s;
  }
}
@keyframes nav-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes nav-item-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-footer {
  background: var(--forest-900);
  color: var(--cream-200);
  padding: 80px 0 32px;
  margin-top: 80px;
}
.site-footer .container {
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
@media (max-width: 880px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-col h5 {
  color: var(--cream-50);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-col ul li a:hover {
  color: var(--cream-50);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--cream-300);
}

.footer-brand-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--cream-50);
  margin-bottom: 16px;
}

.footer-tag {
  color: var(--cream-300);
  max-width: 36ch;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forest-700);
}

h1, h2, h3, h4, h5 {
  margin: 0;
  line-height: 1.3;
}

.h1 {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
}

.h4 {
  font-size: 18px;
  font-weight: 600;
}

.display-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-700);
  line-height: 1.5;
}

.preserve-newlines {
  white-space: pre-line;
}

.container {
  width: 100%;
  max-width: 1294px;
  margin: 0 auto;
  padding: 0 20px;
}

.stack > * + * {
  margin-top: var(--space-4);
}

.row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.row-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.section {
  padding: 60px 20px;
}

.section-tight {
  padding: 60px 20px;
}

@media (max-width: 700px) {
  .section {
    padding: 40px 16px;
  }
  .section-tight {
    padding: 40px 16px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 160ms ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest-800);
  color: var(--cream-50);
}
.btn-primary:hover {
  background: var(--forest-900);
}
.btn-secondary {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
}
.btn-secondary:hover {
  background: var(--ink-900);
  color: var(--cream-50);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
}
.btn-ghost:hover {
  background: var(--cream-200);
}
.btn-burgundy {
  background: var(--burgundy-800);
  color: var(--cream-50);
}
.btn-burgundy:hover {
  background: var(--burgundy-900);
}
.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}
.btn-lg {
  padding: 16px 28px;
  font-size: 15px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
  font-weight: 600;
}
.field input, .field textarea, .field select {
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 15px;
  outline: none;
  transition: border-color 120ms;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--forest-700);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field-error {
  color: var(--burgundy-900);
  font-size: 12px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkbox-row input[type=checkbox] {
  width: 18px;
  height: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--cream-200);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  border: 1px solid #321a6a;
  cursor: pointer;
  transition: all 120ms;
}
.chip:hover {
  background: var(--cream-300);
}
.chip.active {
  background: var(--forest-800);
  color: var(--cream-50);
  border-color: var(--forest-800);
}

.alert {
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 14px;
  margin-bottom: 16px;
}
.alert-success {
  background: rgba(111, 154, 38, 0.12);
  border: 1px solid var(--burgundy-700);
  color: var(--burgundy-900);
}

.product-card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(50, 26, 106, 0.1607843137);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(40, 63, 42, 0.35);
}
.product-card__media {
  position: relative;
  aspect-ratio: 4/2.67;
  background: linear-gradient(135deg, var(--cream-200), var(--cream-300));
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--burgundy-800);
  color: var(--cream-50);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.product-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
}
.product-card__cat {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy-800);
  font-weight: 600;
}
.product-card__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--forest-900);
}
.product-card__sub {
  color: var(--ink-500);
  font-size: 14px;
  font-style: italic;
  font-family: var(--font-display), Georgia, serif;
}
.product-card__desc {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
}
.product-card__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--ink-500);
}
.product-card__meta span strong {
  color: var(--ink-900);
  font-weight: 600;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--cream-200);
  padding: 24px;
}

.login-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  width: 100%;
  max-width: 420px;
}

/* ============================================================
   Admin bar + inline edit styles (loaded only when admin viewing)
   ============================================================ */
.admin-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--forest-900);
  color: var(--cream-100);
  font-family: var(--font-sans, sans-serif);
  font-size: 13px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.admin-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.admin-bar__left, .admin-bar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-bar__badge {
  background: var(--burgundy-800);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 11px;
}
.admin-bar__toggle-form {
  margin: 0;
  padding: 0;
}
.admin-bar__toggle {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream-100);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 4px 12px 4px 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font: inherit;
  transition: background 0.15s;
}
.admin-bar__toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}
.admin-bar__toggle.on {
  background: var(--burgundy-800);
  border-color: var(--burgundy-700);
}
.admin-bar__toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-300);
}
.admin-bar__toggle.on .admin-bar__toggle-dot {
  background: white;
}
.admin-bar__hint {
  color: var(--cream-300);
  font-size: 12px;
  font-style: italic;
}
.admin-bar__locale {
  display: inline-flex;
  gap: 4px;
}
.admin-bar__locale a {
  color: var(--cream-300);
  padding: 2px 8px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}
.admin-bar__locale a.active {
  background: var(--burgundy-800);
  color: white;
}
.admin-bar__locale a:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}
.admin-bar__link {
  color: var(--cream-200);
  background: none;
  border: none;
  padding: 4px 8px;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}
.admin-bar__link:hover {
  color: white;
}
.admin-bar__status {
  position: absolute;
  top: 100%;
  right: 16px;
  background: var(--forest-800);
  color: white;
  padding: 6px 12px;
  border-radius: 0 0 6px 6px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.admin-bar__status.show {
  opacity: 1;
  transform: translateY(0);
}
.admin-bar__status.err {
  background: #b04545;
}

/* Push the rest of the page down when admin bar is present */
body:has(.admin-bar) {
  padding-top: 44px;
}
body:has(.admin-bar) .site-header {
  top: 44px;
}

/* ---------- Inline editable text fields ---------- */
.editable {
  position: relative;
  outline: none;
  cursor: text;
  border-radius: 4px;
  transition: background 0.15s, box-shadow 0.15s;
  padding: 0 2px;
  margin: 0 -2px;
  /* Dashed underline so admin sees what's editable */
}
.editable::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--burgundy-800) 0 4px, transparent 4px 8px);
  opacity: 0;
  transition: opacity 0.15s;
}
.editable:hover::after {
  opacity: 0.6;
}
.editable.editing, .editable:focus {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 2px var(--burgundy-800), 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--ink-900, #111);
}
.editable::after {
  content: "";
}
.editable:focus::after, .editable.editing::after {
  opacity: 0;
}
.editable.saving {
  background: rgba(255, 230, 120, 0.6);
}
.editable.saved {
  background: rgba(140, 220, 140, 0.5);
  transition: background 0.4s;
}

/* ---------- Inline editable images ---------- */
.editable-image {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  height: 100%;
  outline: 2px dashed transparent;
  outline-offset: -2px;
  transition: outline-color 0.15s;
}
.editable-image:hover {
  outline-color: var(--burgundy-800);
}
.editable-image img {
  display: block;
}
.editable-image__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-200);
  color: var(--ink-500, #555);
  font-style: italic;
  min-height: 200px;
}
.editable-image__btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  transition: background 0.15s;
}
.editable-image__btn:hover {
  background: var(--burgundy-800);
}
.editable-image.saving {
  opacity: 0.6;
}
.editable-image.saving::after {
  content: "...";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 24px;
}

/* ---------- Inline select (category dropdown on product detail) ---------- */
.inline-select {
  background: white;
  border: 1px solid var(--burgundy-800);
  border-radius: 6px;
  padding: 4px 28px 4px 10px;
  font: inherit;
  font-size: 12px;
  color: var(--burgundy-800);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.product-card--editing {
  cursor: default;
}
.product-card--editing .product-card__media,
.product-card--editing .product-card__title a {
  cursor: pointer;
}
.product-card--editing .product-card__title a {
  color: inherit;
  text-decoration: none;
}
.product-card--editing .product-card__title a:hover {
  color: var(--burgundy-800);
}

.product-card__cat--editable {
  margin-bottom: 4px;
}
.product-card__cat--editable .inline-select--card {
  width: 100%;
  max-width: 220px;
  padding: 5px 26px 5px 10px;
  background: rgba(50, 26, 106, 0.05);
  border-color: rgba(50, 26, 106, 0.25);
  border-radius: 999px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.product-card__cat--editable .inline-select--card:hover, .product-card__cat--editable .inline-select--card:focus {
  border-color: var(--burgundy-800);
  background: var(--cream-100);
  outline: none;
}

/* ---------- Inline toggle (is_featured pill) ---------- */
.inline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px 4px 6px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.inline-toggle__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-500, #999);
  transition: background 0.15s;
}
.inline-toggle.on {
  background: var(--burgundy-800);
  border-color: var(--burgundy-700);
  color: white;
}
.inline-toggle.on .inline-toggle__dot {
  background: white;
}
.inline-toggle:hover {
  border-color: var(--burgundy-700);
}

/* ---------- Editable category chip + delete X ---------- */
.chip-editable {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 4px;
}
.chip-editable .chip-x {
  background: transparent;
  border: none;
  color: currentColor;
  opacity: 0.55;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 50%;
}
.chip-editable .chip-x:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

.chip-add {
  background: transparent;
  border: 1.5px dashed var(--burgundy-800);
  color: var(--burgundy-800);
  cursor: pointer;
  font: inherit;
}
.chip-add:hover {
  background: rgba(111, 154, 38, 0.08);
}

/* ---------- + Add product tile (end of grid) ---------- */
.product-add-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 280px;
  background: transparent;
  border: 2px dashed var(--burgundy-800);
  border-radius: var(--r-lg, 12px);
  color: var(--burgundy-800);
  cursor: pointer;
  font: inherit;
  transition: background 0.15s, transform 0.15s;
}
.product-add-tile__plus {
  font-size: 48px;
  line-height: 1;
  font-weight: 300;
}
.product-add-tile__label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.product-add-tile:hover {
  background: rgba(111, 154, 38, 0.08);
  transform: translateY(-2px);
}

/* ---------- Inline dialog (add product / add category) ---------- */
.inline-dialog {
  border: none;
  padding: 0;
  border-radius: var(--r-lg, 12px);
  max-width: 460px;
  width: 90%;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.45);
  background: white;
}
.inline-dialog::backdrop {
  background: rgba(34, 17, 73, 0.55);
  backdrop-filter: blur(2px);
}
.inline-dialog__form {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.inline-dialog__form h3 {
  margin: 0 0 4px;
  font-size: 22px;
  color: var(--forest-900, #221149);
}
.inline-dialog__form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.inline-dialog__form .field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500, #555);
  font-weight: 600;
}
.inline-dialog__form .field input, .inline-dialog__form .field select {
  padding: 10px 12px;
  border: 1px solid var(--line, #ddd);
  border-radius: 8px;
  font: inherit;
  background: white;
}
.inline-dialog__form .field input:focus, .inline-dialog__form .field select:focus {
  outline: 2px solid var(--burgundy-800);
  outline-offset: -1px;
}
.inline-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

/* ---------- Admin meta (slug at bottom of product detail) ---------- */
.admin-meta {
  margin-top: 24px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px dashed var(--line, #ddd);
  border-radius: 8px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-meta label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500, #777);
  font-weight: 600;
}
.admin-meta code {
  font-family: monospace;
}

/* ---------- Footer contact rows + social icons ---------- */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.footer-contact__link:hover {
  color: var(--cream-50, #fff);
}
.footer-contact__social {
  gap: 12px;
  margin-top: 4px;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--cream-300, currentColor);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream-200, currentColor);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.footer-social:hover {
  background: var(--burgundy-800);
  color: white;
  transform: translateY(-2px);
}

/* ---------- Brand-mark editable (header/footer logo) ---------- */
.brand-mark-edit {
  position: relative;
  cursor: pointer;
  width: auto;
  height: auto;
  outline: 2px dashed transparent;
  outline-offset: 2px;
  border-radius: 4px;
  transition: outline-color 0.15s;
}
.brand-mark-edit:hover {
  outline-color: var(--burgundy-800);
}
.brand-mark-edit .brand-mark-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 1.5px dashed var(--burgundy-800);
  border-radius: 6px;
  color: var(--burgundy-800);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}
.brand-mark-edit .brand-mark-btn {
  top: -8px;
  right: -8px;
  padding: 3px;
  font-size: 0;
  line-height: 0;
}
.brand-mark-edit .brand-mark-btn svg {
  display: block;
}
.brand-mark-edit .brand-mark-btn span {
  display: none;
}

/* ---------- Meta table row delete + add ---------- */
.meta-row-actions {
  text-align: right;
  width: 36px;
}

.row-x {
  background: transparent;
  border: none;
  color: var(--ink-500, #777);
  font-size: 18px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.15s, background 0.15s, color 0.15s;
}
.row-x:hover {
  opacity: 1;
  color: #b04545;
  background: rgba(176, 69, 69, 0.1);
}

.meta-add-btn {
  background: transparent;
  border: 1.5px dashed var(--burgundy-800);
  color: var(--burgundy-800);
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.meta-add-btn:hover {
  background: rgba(111, 154, 38, 0.08);
}

/* ---------- Delete button ---------- */
.btn-danger {
  background: #b04545;
  color: white;
  border: none;
}
.btn-danger:hover {
  background: #962d2d;
}

/* ---------- Admin alert dialog ---------- */
.admin-alert {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(460px, 100vw - 32px);
}
.admin-alert::backdrop {
  background: rgba(34, 17, 73, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.admin-alert[open] {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink-900);
  border-radius: var(--r-lg);
  padding: 24px 26px 22px;
  box-shadow: 0 30px 60px -20px rgba(34, 17, 73, 0.45);
  animation: admin-alert-in 220ms cubic-bezier(0.2, 0.7, 0.3, 1.2);
}
.admin-alert__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.admin-alert__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--forest-900);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
}
.admin-alert__close {
  background: transparent;
  border: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-500);
  cursor: pointer;
  padding: 0 4px;
  margin: -2px -4px 0 0;
  border-radius: 50%;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.admin-alert__close:hover {
  color: var(--forest-900);
  background: rgba(50, 26, 106, 0.08);
}
.admin-alert__message {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-700);
  white-space: pre-line;
}
.admin-alert__list {
  list-style: none;
  padding: 14px 16px;
  margin: 0 0 18px;
  background: rgba(50, 26, 106, 0.05);
  border-left: 3px solid var(--burgundy-800);
  border-radius: var(--r-sm);
  max-height: 240px;
  overflow-y: auto;
}
.admin-alert__list li {
  font-size: 14px;
  color: var(--forest-900);
  padding: 4px 0 4px 16px;
  position: relative;
}
.admin-alert__list li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--burgundy-800);
  font-weight: 700;
}
.admin-alert__list:empty {
  display: none;
}
.admin-alert__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.admin-alert__actions[hidden] {
  display: none;
}
.admin-alert__actions .btn {
  padding: 9px 22px;
  font-size: 13px;
}

@keyframes admin-alert-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* Shared generic helpers used across pages */
.container-narrow {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* spacing scale: 4 / 8 / 12 / 16 / 24 / 32 / 40 / 48 */
.mt-4 {
  margin-top: 4px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.pt-24 {
  padding-top: 24px;
}

.pt-32 {
  padding-top: 32px;
}

.pt-48 {
  padding-top: 48px;
}

/* gap overrides (override .row default 16) */
.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-28 {
  gap: 28px;
}

/* flex helpers */
.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.row-end {
  display: flex;
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.align-end {
  align-items: flex-end;
}

/* sizes */
.maxw-720 {
  max-width: 720px;
}

.maxw-1200 {
  max-width: 1200px;
}

.w-full {
  width: 100%;
}

/* text */
.text-right {
  text-align: right;
}

.no-underline {
  text-decoration: none;
}

/* display helpers */
.d-inline {
  display: inline;
}

/* login screen */
.login-h2 {
  font-size: 24px;
  margin-top: 12px;
}

.login-remember-label {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-700);
  font-weight: 400;
}

.login-submit {
  width: 100%;
  justify-content: center;
}

/* themed colors (avoid raw style="color: var(--...)") */
.text-cream-300 {
  color: var(--cream-300);
}

.text-cream-200 {
  color: var(--cream-200);
}

.text-burgundy-700 {
  color: var(--burgundy-700);
}

.text-forest-900 {
  color: var(--forest-900);
}

.text-ink-500 {
  color: var(--ink-500);
}

.text-ink-700 {
  color: var(--ink-700);
}

/* ---- About page ---- */
.about-section-1 {
  padding-top: 60px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .about-section-1 {
    padding-top: 40px;
    padding-bottom: 5px;
  }
}
.about-section-1 .container-narrow {
  max-width: 750px;
}
.about-section-1 h1 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .about-section-1 h1 {
    font-size: 25px;
  }
}

.about-section-2 .about-hero {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-200), var(--cream-300));
}
.about-section-2 .about-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about-section-3 {
  padding-top: 60px;
}
.about-section-3 .about-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
  text-align: center;
  color: var(--ink-700);
  text-wrap: pretty;
  margin: 0;
}

.about-section-4 .about-blocks,
.about-section-6 .about-blocks {
  row-gap: 40px;
}
@media (max-width: 767px) {
  .about-section-4 .about-blocks,
  .about-section-6 .about-blocks {
    row-gap: 15px;
  }
}
.about-section-4 .about-block,
.about-section-6 .about-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.about-section-4 .about-block h3,
.about-section-6 .about-block h3 {
  color: var(--forest-900);
  margin-bottom: 8px;
}
.about-section-4 .about-block p,
.about-section-6 .about-block p {
  color: var(--ink-700);
}
.about-section-4 .about-block__num,
.about-section-6 .about-block__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--burgundy-800);
  font-size: 24px;
  margin-bottom: 12px;
}

.about-section-5 {
  background: var(--forest-900);
  color: var(--cream-100);
}
.about-section-5 h2 {
  color: var(--cream-50);
}
@media (max-width: 767px) {
  .about-section-5 h2 {
    font-size: 20px;
  }
}

.about-section-7 .fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) {
  .about-section-7 .fact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-section-7 .fact-grid .fact:nth-child(2) {
    border-right: 0;
  }
  .about-section-7 .fact-grid .fact:nth-child(1),
  .about-section-7 .fact-grid .fact:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}
.about-section-7 .fact {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}
@media (max-width: 767px) {
  .about-section-7 .fact {
    padding: 25px 15px;
  }
}
.about-section-7 .fact:last-child {
  border-right: 0;
}
.about-section-7 .fact__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  color: var(--burgundy-800);
  line-height: 1;
}
@media (max-width: 767px) {
  .about-section-7 .fact__num {
    font-size: 26px;
  }
}
.about-section-7 .fact__label {
  font-size: 13px;
  margin-top: 8px;
  color: var(--ink-700);
  max-width: 22ch;
}

.about-section-8 {
  background: var(--forest-800);
  color: var(--cream-100);
}
.about-section-8 .quote {
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.about-section-8 .eyebrow {
  color: var(--cream-300);
}

.about-section-video .about-video {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .about-section-video .about-video {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.about-section-video .about-video__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--forest-900);
  aspect-ratio: 16/9;
  box-shadow: 0 30px 60px -30px rgba(34, 17, 73, 0.45);
}
@media (max-width: 767px) {
  .about-section-video .about-video__media {
    border-radius: var(--r-lg);
  }
}
.about-section-video .about-video__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-section-video .about-video__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-section-video .about-video__body .lede {
  color: var(--ink-700);
}

/* ---------- Scroll reveal + entrance (shared across pages) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.25, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.25, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--hero {
  opacity: 1;
  transform: none;
}
.reveal--hero .reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.25, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal--hero.is-visible .reveal-child {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.25, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.25, 1);
}

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

.reveal.is-visible .reveal-stagger > *:nth-child(1) {
  transition-delay: 0ms;
}

.reveal.is-visible .reveal-stagger > *:nth-child(2) {
  transition-delay: 80ms;
}

.reveal.is-visible .reveal-stagger > *:nth-child(3) {
  transition-delay: 160ms;
}

.reveal.is-visible .reveal-stagger > *:nth-child(4) {
  transition-delay: 240ms;
}

.reveal.is-visible .reveal-stagger > *:nth-child(5) {
  transition-delay: 320ms;
}

.reveal.is-visible .reveal-stagger > *:nth-child(6) {
  transition-delay: 400ms;
}

.reveal.is-visible .reveal-stagger > *:nth-child(7) {
  transition-delay: 480ms;
}

.reveal.is-visible .reveal-stagger > *:nth-child(8) {
  transition-delay: 560ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--hero .reveal-child,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
