/* ---------- Shalev's Cakes — design tokens ---------- */
:root {
  --cream: #F6F0E4;
  --cream-2: #EFE7D7;
  --cream-3: #E8DEC9;
  --paper: #FBF7EE;
  --ink: #15110C;
  --ink-2: #2A2520;
  --muted: #6F6657;
  --line: #1c1812;
  --rose: #E9C7C0;
  --rose-2: #D9A097;
  --rose-3: #C2786C;
  --plum: #5B2A2A;

  --serif: "Cormorant Garamond", "Cormorant", "Playfair Display", Georgia, serif;
  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Heebo", "Assistant", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga";
  text-rendering: optimizeLegibility;
}

html { direction: rtl; }
body { direction: rtl; }

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

::selection { background: var(--ink); color: var(--cream); }

/* ---------- Typography helpers ---------- */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; }
.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow-en { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 1100px) { .container { padding: 0 48px; } }

.divider { height: 1px; background: rgba(21,17,12,0.12); width: 100%; }
.divider-soft { height: 1px; background: rgba(21,17,12,0.06); width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid rgba(21,17,12,0.08);
  backdrop-filter: saturate(1.05);
}
.header-top {
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.header-left { display: flex; align-items: center; gap: 14px; justify-content: flex-start; }
.header-right { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }

.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.brand-mark .name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.01em;
}
.brand-mark .tag {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-solid {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  border-radius: 0;
  transition: background 400ms ease, color 400ms ease, transform 400ms ease;
}
.cta-solid:hover { background: var(--plum); }

.icon-btn {
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  color: var(--ink);
  transition: opacity 300ms ease;
}
.icon-btn:hover { opacity: 0.6; }
.cart-badge {
  position: absolute;
  top: 4px;
  inset-inline-end: 4px;
  background: var(--rose-3);
  color: white;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
  padding: 0 5px;
  font-family: var(--mono);
}

.nav-row {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border-top: 1px solid rgba(21,17,12,0.08);
}
.nav-row a {
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 300ms ease;
}
.nav-row a:hover { color: var(--rose-3); }
.nav-row a.is-active { color: var(--rose-3); }
.nav-row a.is-active::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: -4px;
  height: 1px;
  background: var(--rose-3);
}

@media (max-width: 880px) {
  .header-top { grid-template-columns: 1fr auto 1fr; height: 64px; }
  .brand-mark .name { font-size: 22px; }
  .brand-mark .tag { font-size: 8.5px; letter-spacing: 0.28em; }
  .nav-row { display: none; }
  .desktop-only { display: none !important; }
}
@media (min-width: 881px) {
  .mobile-only { display: none !important; }
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--cream);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
  font-weight: 400;
  font-family: var(--mono);
}
.announce span { opacity: 0.9; }
.announce .dot { display: inline-block; width: 4px; height: 4px; background: var(--rose-2); border-radius: 999px; margin: 0 14px; vertical-align: middle; }

/* ---------- Hero (editorial wordmark) ---------- */
.hero-pro {
  background: var(--cream);
  padding: 24px 0 0;
  direction: ltr; /* keep wordmark left-to-right */
}
.hero-pro-top {
  padding: 8px 28px 0;
}
.hero-pro-mark {
  margin: 0;
  font-family: "Helvetica Neue", "Arial Black", "Inter", system-ui, sans-serif;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.045em;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.06em;
  white-space: nowrap;
}
.hero-pro-mark .big {
  font-size: clamp(72px, 17.5vw, 280px);
  font-weight: 900;
  letter-spacing: -0.05em;
}
.hero-pro-mark .small {
  font-size: clamp(28px, 5.5vw, 92px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-top: 0.55em;
  margin-inline-start: 0.18em;
}
.hero-pro-meta {
  direction: rtl;
  padding: 22px 28px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
@media (min-width: 1100px) {
  .hero-pro-top { padding: 8px 48px 0; }
  .hero-pro-meta { padding: 26px 48px 44px; }
}
.hero-pro-copy { max-width: 380px; }
.hero-pro-copy p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.hero-pro-copy p strong { font-weight: 600; }
.hero-pro-cta-wrap { display: flex; justify-content: flex-end; }
.hero-pro-cta {
  padding: 16px 30px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
@media (max-width: 760px) {
  .hero-pro-meta { grid-template-columns: 1fr; }
  .hero-pro-cta-wrap { justify-content: flex-start; }
}

.hero-pro-slider {
  position: relative;
  background: var(--cream);
  direction: ltr;
}
.hero-pro-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: clamp(380px, 50vw, 720px);
}
@media (max-width: 720px) {
  .hero-pro-track { grid-template-columns: 1fr; height: clamp(360px, 90vw, 560px); }
  .hero-pro-track .hero-pro-tile:nth-child(2) { display: none; }
}
.hero-pro-tile {
  background: var(--cream-2);
  overflow: hidden;
  position: relative;
}
.hero-pro-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1), opacity 500ms ease;
}
.hero-pro-tile:hover img { transform: scale(1.02); }

.hero-pro-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: transparent;
  border: 0;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: opacity 300ms ease, transform 400ms ease;
  opacity: 0.85;
}
.hero-pro-nav:hover { opacity: 1; }
.hero-pro-nav.prev { left: 8px; }
.hero-pro-nav.next { right: 8px; }
.hero-pro-nav.prev:hover { transform: translateY(-50%) translateX(-3px); }
.hero-pro-nav.next:hover { transform: translateY(-50%) translateX(3px); }
@media (min-width: 1100px) {
  .hero-pro-nav.prev { left: 24px; }
  .hero-pro-nav.next { right: 24px; }
}

.hero-pro .cat-strip { margin-top: 0; }

/* ---------- (legacy hero, kept for fallback) ---------- */
.hero {
  padding: 56px 0 0;
  background: var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: stretch; }
}
.hero-left { display: flex; flex-direction: column; justify-content: space-between; padding: 8px 4px 24px; }
.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9.5vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-3);
}
.hero-meta {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.hero-meta .col { max-width: 320px; }
.hero-meta p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--ink-2); }
.hero-meta .label { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; }

.hero-right {
  position: relative;
  background: var(--cream-2);
  aspect-ratio: 4/5;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero-right { aspect-ratio: auto; min-height: 620px; } }
.hero-right img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(.2,.7,.2,1); }
.hero-right:hover img { transform: scale(1.02); }
.hero-tag {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  background: rgba(251,247,238,0.9);
  backdrop-filter: blur(6px);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-caption {
  position: absolute;
  bottom: 18px;
  inset-inline-end: 18px;
  background: var(--paper);
  padding: 14px 18px;
  max-width: 280px;
  font-size: 12.5px;
  line-height: 1.55;
}
.hero-caption strong { font-weight: 500; }
.hero-caption .price { display: block; margin-top: 6px; font-family: var(--mono); font-size: 11.5px; color: var(--muted); }

/* hero strip — categories below hero */
.cat-strip {
  margin-top: 56px;
  border-top: 1px solid rgba(21,17,12,0.12);
  border-bottom: 1px solid rgba(21,17,12,0.12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .cat-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cat-strip { grid-template-columns: repeat(6, 1fr); } }
.cat-strip a {
  padding: 22px 16px;
  font-size: 13px;
  text-align: center;
  color: var(--ink-2);
  border-inline-end: 1px solid rgba(21,17,12,0.08);
  transition: background 400ms ease, color 400ms ease;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em;
}
.cat-strip a:last-child { border-inline-end: 0; }
.cat-strip a:hover { background: var(--paper); color: var(--rose-3); }

/* ---------- Section heading ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 40px;
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: 1fr auto; }
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
}
.section-title em { font-style: italic; color: var(--rose-3); }
.section-side { font-size: 13px; color: var(--muted); max-width: 360px; line-height: 1.65; }

/* ---------- Category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .cat-grid { grid-template-columns: repeat(6, 1fr); gap: 18px; } }
.cat-card {
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer;
  transition: transform 500ms ease;
}
.cat-card:hover { transform: translateY(-2px); }
.cat-card .frame {
  aspect-ratio: 3/4;
  background: var(--paper);
  overflow: hidden;
  border: 1px solid rgba(21,17,12,0.06);
}
.cat-card .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.cat-card:hover .frame img { transform: scale(1.04); }
.cat-card .label {
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-2);
}
.cat-card .label .he { font-family: var(--serif); font-size: 18px; }
.cat-card .label .num { font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.16em; }

/* ---------- Product grid ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(21,17,12,0.08);
  border: 1px solid rgba(21,17,12,0.08);
}
@media (min-width: 720px) { .products { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .products { grid-template-columns: repeat(4, 1fr); } }

.product {
  background: var(--paper);
  display: flex; flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: background 400ms ease;
}
.product:hover { background: var(--cream); }
.product .ph {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}
.product .ph img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), opacity 500ms ease;
}
.product:hover .ph img { transform: scale(1.04); }
.product .meta {
  padding: 18px 18px 22px;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid rgba(21,17,12,0.06);
}
.product .meta .row1 {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.product .name { font-family: var(--serif); font-size: 19px; line-height: 1.2; }
.product .price { font-family: var(--mono); font-size: 12px; color: var(--muted); white-space: nowrap; }
.product .desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

.product .add {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(21,17,12,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 400ms ease, transform 400ms ease, background 400ms ease, color 400ms ease;
  color: var(--ink);
}
.product:hover .add { opacity: 1; transform: translateY(0); }
.product .add:hover { background: var(--ink); color: var(--paper); }

.product .badge {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  background: var(--paper);
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.product .badge.rose { background: var(--rose); color: var(--plum); }

/* ---------- Editorial split ---------- */
.split {
  background: var(--cream-2);
  padding: 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: 640px;
}
@media (min-width: 1024px) { .split-grid { grid-template-columns: 1.1fr 1fr; } }
.split-text {
  padding: 80px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.split-text h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.015em;
}
.split-text h3 em { font-style: italic; color: var(--rose-3); }
.split-text p { font-size: 15px; line-height: 1.75; max-width: 520px; color: var(--ink-2); margin: 0; }
.split-text .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  margin-top: 8px;
}
.split-img {
  background: var(--cream-3);
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .overlay {
  position: absolute;
  inset-inline-start: 24px;
  bottom: 24px;
  background: var(--paper);
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- Spotlight ---------- */
.spotlight {
  background: var(--rose);
  padding: 96px 0;
  color: var(--plum);
  overflow: hidden;
  position: relative;
}
.spotlight .container { position: relative; z-index: 1; }
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .spotlight-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.spotlight h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.spotlight h3 em { font-style: italic; }
.spotlight p { font-size: 15px; line-height: 1.7; max-width: 460px; }
.spotlight .frame {
  aspect-ratio: 1/1;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
}
.spotlight .frame img { width: 100%; height: 100%; object-fit: cover; }
.spotlight .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
  opacity: 0.7;
  margin-bottom: 24px;
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px;
  border: 1px solid var(--plum);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--plum);
  transition: background 400ms ease, color 400ms ease;
}
.btn-outline-dark:hover { background: var(--plum); color: var(--rose); }

/* ---------- Tape / running text ---------- */
.tape {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.tape-track {
  display: inline-flex;
  gap: 48px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.005em;
  animation: tape 30s linear infinite;
}
.tape-track span { display: inline-flex; align-items: center; gap: 48px; }
.tape-track .dot { width: 6px; height: 6px; background: var(--rose-2); border-radius: 999px; display: inline-block; }
@keyframes tape {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hours / Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; } }
.visit-card { display: flex; flex-direction: column; gap: 18px; }
.visit-card h4 { font-family: var(--serif); font-weight: 400; font-size: 28px; margin: 0; }
.visit-card .row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(21,17,12,0.08); font-size: 14px; }
.visit-card .row .day { color: var(--ink-2); }
.visit-card .row .hours { font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
.visit-card .body { font-size: 14px; line-height: 1.7; color: var(--ink-2); }

.visit-img { aspect-ratio: 4/5; overflow: hidden; background: var(--cream-2); }
.visit-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Newsletter ---------- */
.news {
  background: var(--ink);
  color: var(--cream);
  padding: 88px 0;
}
.news .container { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .news .container { grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; } }
.news h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.015em;
}
.news h3 em { color: var(--rose-2); font-style: italic; }
.news p { font-size: 14px; line-height: 1.7; opacity: 0.75; max-width: 380px; margin: 18px 0 0; }
.news-form { display: flex; gap: 12px; align-items: stretch; }
.news-form input {
  flex: 1;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  color: var(--cream);
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  direction: rtl;
}
.news-form input::placeholder { color: rgba(255,255,255,0.5); }
.news-form input:focus { border-bottom-color: var(--rose-2); }
.news-form button {
  background: var(--cream);
  color: var(--ink);
  border: 0;
  padding: 0 26px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  transition: background 400ms ease, color 400ms ease;
}
.news-form button:hover { background: var(--rose-2); }

/* ---------- Footer ---------- */
.footer {
  background: var(--paper);
  padding: 64px 0 40px;
  border-top: 1px solid rgba(21,17,12,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; } }
.footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14px; color: var(--ink-2); transition: color 300ms ease; }
.footer a:hover { color: var(--rose-3); }
.footer .brand-block .name { font-family: var(--serif); font-size: 36px; line-height: 1; }
.footer .brand-block .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.28em; color: var(--muted); margin-top: 8px; text-transform: uppercase; }
.footer .brand-block p { margin-top: 16px; font-size: 13.5px; color: var(--ink-2); line-height: 1.7; max-width: 360px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(21,17,12,0.08);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap; gap: 12px;
}

/* ---------- Cart drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(21,17,12,0.4);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; bottom: 0;
  left: 0;
  width: min(440px, 92vw);
  background: var(--paper);
  z-index: 101;
  transform: translateX(-100%);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(21,17,12,0.08);
}
.drawer-head h4 { font-family: var(--serif); font-size: 24px; margin: 0; font-weight: 400; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 28px; }
.drawer-foot { padding: 20px 28px; border-top: 1px solid rgba(21,17,12,0.08); display: flex; flex-direction: column; gap: 14px; }
.drawer-foot .total { display: flex; justify-content: space-between; font-size: 14px; }
.drawer-foot .total .v { font-family: var(--mono); }

.cart-line { display: grid; grid-template-columns: 80px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(21,17,12,0.06); align-items: start; }
.cart-line .img { width: 80px; height: 80px; background: var(--cream-2); overflow: hidden; }
.cart-line .img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .info { display: flex; flex-direction: column; gap: 6px; }
.cart-line .info .n { font-family: var(--serif); font-size: 17px; }
.cart-line .info .qty { display: inline-flex; align-items: center; gap: 8px; }
.cart-line .info .qty button { background: transparent; border: 1px solid rgba(21,17,12,0.18); width: 26px; height: 26px; font-size: 13px; }
.cart-line .info .qty span { font-family: var(--mono); font-size: 12.5px; min-width: 18px; text-align: center; }
.cart-line .info .remove { background: transparent; border: 0; padding: 0; color: var(--muted); font-size: 11.5px; text-align: start; margin-top: 4px; letter-spacing: 0.04em; text-decoration: underline; text-underline-offset: 3px; }
.cart-line .price-cell { font-family: var(--mono); font-size: 12.5px; }

.empty-cart { padding: 40px 0; text-align: center; color: var(--muted); font-size: 14px; }
.empty-cart .e-title { font-family: var(--serif); font-size: 22px; color: var(--ink); display: block; margin-bottom: 8px; }

/* mobile menu drawer */
.menu-drawer {
  position: fixed;
  top: 0; bottom: 0;
  right: 0;
  width: min(380px, 88vw);
  background: var(--paper);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
}
.menu-drawer.open { transform: translateX(0); }
.menu-drawer .head { padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(21,17,12,0.08); }
.menu-drawer .head .name { font-family: var(--serif); font-size: 22px; }
.menu-drawer ul { list-style: none; padding: 16px 28px; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.menu-drawer ul a { display: block; padding: 16px 0; font-family: var(--serif); font-size: 22px; border-bottom: 1px solid rgba(21,17,12,0.06); }
.menu-drawer .foot { padding: 22px 28px; border-top: 1px solid rgba(21,17,12,0.08); display: flex; flex-direction: column; gap: 12px; }

/* ---------- Quick view modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(21,17,12,0.5);
  z-index: 110;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 350ms ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper);
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1fr;
  overflow: auto;
  transform: translateY(20px);
  transition: transform 400ms ease;
}
@media (min-width: 800px) { .modal { grid-template-columns: 1fr 1fr; } }
.modal-backdrop.open .modal { transform: translateY(0); }
.modal .img { background: var(--cream-2); aspect-ratio: 1/1; overflow: hidden; }
.modal .img img { width: 100%; height: 100%; object-fit: cover; }
.modal .body { padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.modal .body h3 { font-family: var(--serif); font-size: 36px; margin: 0; font-weight: 400; }
.modal .body .price { font-family: var(--mono); font-size: 16px; color: var(--muted); }
.modal .body p { font-size: 14px; line-height: 1.75; color: var(--ink-2); margin: 0; }
.modal .body .opts { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.modal .body .opts label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.modal .body .swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.modal .body .swatches button {
  border: 1px solid rgba(21,17,12,0.2);
  background: transparent;
  padding: 8px 14px;
  font-size: 13px;
  transition: background 300ms ease, color 300ms ease;
}
.modal .body .swatches button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.modal .body .actions { display: flex; gap: 12px; margin-top: 18px; }
.modal .body .actions .cta-solid { flex: 1; }
.modal .close { position: absolute; top: 14px; inset-inline-start: 14px; background: var(--paper); border: 0; width: 38px; height: 38px; }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.04em;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
  display: flex; align-items: center; gap: 12px;
}
.toast .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--rose-2); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Marquee categories pill ---------- */
.cat-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-pills button {
  background: transparent;
  border: 1px solid rgba(21,17,12,0.2);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12.5px;
  color: var(--ink-2);
  transition: background 300ms ease, color 300ms ease, border-color 300ms ease;
}
.cat-pills button:hover { border-color: var(--ink); }
.cat-pills button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- Reviews ---------- */
.reviews { background: var(--paper); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.review-card {
  background: var(--cream);
  border: 1px solid rgba(21,17,12,0.08);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 500ms ease, border-color 400ms ease;
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(21,17,12,0.18); }
.review-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream-2);
}
.review-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.review-card:hover .review-img img { transform: scale(1.04); }
.review-body { padding: 28px 28px 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.review-card .stars { display: flex; gap: 2px; color: var(--rose-3); }
.review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  position: relative;
  letter-spacing: 0.005em;
}
.review-quote .qmark {
  font-family: var(--serif);
  font-style: normal;
  color: var(--rose-3);
  opacity: 0.55;
  font-size: 32px;
  line-height: 0;
  margin: 0 2px;
  vertical-align: -8px;
}
.review-quote .qmark.close { vertical-align: -14px; }
.review-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(21,17,12,0.1);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.review-meta .who {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.review-meta .prod {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--muted);
}

.reviews-foot {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(21,17,12,0.1);
}
.reviews-foot .eyebrow-en { color: var(--ink-2); }

/* ---------- Contact ---------- */
.contact { background: var(--cream); padding: 96px 0 112px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 980px) {
  .contact-grid { grid-template-columns: 0.95fr 1.05fr; gap: 72px; }
}
.contact-left h2 { margin: 0; }
.contact-lead { font-size: 15px; line-height: 1.75; color: var(--ink-2); margin: 22px 0 32px; max-width: 480px; }
.contact-info { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(21,17,12,0.12); }
.contact-info li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(21,17,12,0.08);
  align-items: center;
}
.contact-info .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.contact-info .v { font-size: 14.5px; color: var(--ink-2); }
.contact-info a.v { transition: color 300ms ease; }
.contact-info a.v:hover { color: var(--rose-3); }

.contact-form {
  background: var(--paper);
  padding: 36px;
  border: 1px solid rgba(21,17,12,0.08);
  display: flex; flex-direction: column; gap: 18px;
}
@media (min-width: 700px) { .contact-form { padding: 44px; } }
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .contact-form .row2 { grid-template-columns: 1fr; } }
.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(21,17,12,0.2);
  color: var(--ink);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  direction: rtl;
  resize: none;
  transition: border-color 300ms ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(21,17,12,0.35); }
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--rose-3); }
.contact-submit { margin-top: 8px; align-self: flex-start; padding: 16px 32px; }
.contact-submit:disabled { background: var(--rose-3); cursor: default; }
.contact-fineprint { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; }

/* ---------- Mobile polish ---------- */
@media (max-width: 760px) {
  .container { padding: 0 18px; }

  /* Header */
  .announce { font-size: 9.5px; letter-spacing: 0.14em; padding: 8px 0; }
  .announce .dot { margin: 0 8px; }
  .announce .container { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
  .header-top { height: 60px; gap: 8px; }
  .brand-mark .name { font-size: 19px; }
  .brand-mark .tag { font-size: 7.5px; letter-spacing: 0.22em; }
  .header-right { gap: 4px; }
  .header-left { gap: 4px; }
  .icon-btn { width: 38px; height: 38px; }

  /* Hero wordmark */
  .hero-pro { padding: 16px 0 0; }
  .hero-pro-top { padding: 4px 18px 0; }
  .hero-pro-mark { display: block; line-height: 0.86; }
  .hero-pro-mark .big { font-size: 18.5vw; display: block; }
  .hero-pro-mark .small { font-size: 10vw; margin-inline-start: 0; margin-top: 0; display: inline-block; }
  .hero-pro-meta { padding: 18px 18px 24px; gap: 18px; }
  .hero-pro-copy p { font-size: 13px; }
  .hero-pro-cta { width: 100%; padding: 14px 24px; }
  .hero-pro-cta-wrap { width: 100%; }
  .hero-pro-nav { width: 40px; height: 40px; }
  .hero-pro-nav.prev { left: 4px; }
  .hero-pro-nav.next { right: 4px; }

  /* Sections — reduced padding */
  .section { padding: 56px 0; }
  .section-tight { padding: 44px 0; }
  .section-head { gap: 14px; margin-bottom: 24px; }
  .section-title { font-size: 34px; line-height: 1.02; }
  .section-side { font-size: 13px; }

  /* Cat strip — single column row of two */
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .cat-strip a { padding: 16px 10px; font-size: 12px; }

  /* Categories big grid — 2 col on mobile */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-card .label .he { font-size: 15px; }
  .cat-card .label .num { font-size: 9.5px; }

  /* Products grid — 2 col on mobile, smaller meta */
  .products { grid-template-columns: repeat(2, 1fr); }
  .product .meta { padding: 12px 12px 16px; gap: 4px; }
  .product .name { font-size: 15px; }
  .product .desc { font-size: 11.5px; line-height: 1.45; }
  .product .price { font-size: 11px; }
  .product .badge { padding: 4px 7px; font-size: 8.5px; top: 8px; inset-inline-end: 8px; }
  .product .add { width: 32px; height: 32px; top: 8px; inset-inline-start: 8px; opacity: 1; transform: none; }
  .cat-pills { gap: 6px; }
  .cat-pills button { padding: 7px 13px; font-size: 11.5px; }

  /* Spotlight */
  .spotlight { padding: 64px 0; }
  .spotlight h3 { font-size: 44px; }
  .spotlight p { font-size: 14px; }

  /* Tape */
  .tape { padding: 16px 0; }
  .tape-track { font-size: 20px; gap: 28px; }
  .tape-track span { gap: 28px; }

  /* Reviews */
  .review-body { padding: 20px 18px 22px; gap: 12px; }
  .review-quote { font-size: 16.5px; }
  .review-meta .who { font-size: 10px; letter-spacing: 0.12em; }
  .review-meta .prod { font-size: 12.5px; }
  .reviews-foot { margin-top: 32px; padding-top: 20px; }
  .reviews-foot .cta-solid { width: 100%; }

  /* Contact */
  .contact { padding: 56px 0 64px; }
  .contact-grid { gap: 32px; }
  .contact-lead { font-size: 14px; margin: 16px 0 24px; }
  .contact-info li { grid-template-columns: 88px 1fr; padding: 12px 0; gap: 10px; }
  .contact-info .k { font-size: 9.5px; letter-spacing: 0.14em; }
  .contact-info .v { font-size: 13.5px; }
  .contact-form { padding: 22px 20px; gap: 14px; }
  .contact-form label { font-size: 9.5px; letter-spacing: 0.14em; }
  .contact-form input, .contact-form textarea { font-size: 14px; padding: 8px 0; }
  .contact-submit { width: 100%; padding: 14px 24px; }

  /* Newsletter */
  .news { padding: 56px 0; }
  .news h3 { font-size: 34px; }
  .news-form { flex-direction: column; gap: 14px; }
  .news-form button { width: 100%; padding: 14px 20px; }

  /* Footer */
  .footer { padding: 48px 0 28px; }
  .footer-grid { gap: 28px; }
  .footer .brand-block .name { font-size: 30px; }
  .footer-bottom { margin-top: 32px; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 9.5px; }

  /* Cart drawer */
  .drawer-head { padding: 18px 20px; }
  .drawer-body { padding: 4px 20px; }
  .drawer-foot { padding: 16px 20px; }
  .cart-line { grid-template-columns: 64px 1fr auto; gap: 10px; padding: 14px 0; }
  .cart-line .img { width: 64px; height: 64px; }
  .cart-line .info .n { font-size: 15px; }

  /* Quick view modal */
  .modal { max-height: 92vh; }
  .modal .body { padding: 22px 20px; gap: 12px; }
  .modal .body h3 { font-size: 26px; }
  .modal .body .price { font-size: 14px; }
  .modal .body p { font-size: 13px; }
  .modal .close { top: 8px; inset-inline-start: 8px; }

  /* Visit (legacy fallback) */
  .visit-card h4 { font-size: 22px; }
  .split-text { padding: 48px 22px; }
  .split-text h3 { font-size: 38px; }
}

@media (max-width: 420px) {
  .hero-pro-mark .big { font-size: 20.5vw; }
  .hero-pro-mark .small { font-size: 11vw; }
  .section-title { font-size: 28px; }
  .spotlight h3 { font-size: 36px; }
  .news h3 { font-size: 28px; }
}

/* ---------- Built-by credit ---------- */
.built-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #2A1614;
  color: #C9A89A;
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 300ms ease, background 300ms ease;
}
.built-by:hover { color: #E9C7C0; background: #36201D; }
.built-by .oy-name { font-weight: 600; letter-spacing: 0.26em; }
.built-by .oy-mark { display: inline-flex; opacity: 0.8; }
.built-by .oy-he { font-family: var(--sans); letter-spacing: 0.06em; text-transform: none; font-size: 12px; }
@media (max-width: 480px) {
  .built-by { gap: 10px; padding: 12px 14px; font-size: 10px; }
  .built-by .oy-he { font-size: 11px; }
}
.text-muted { color: var(--muted); }

/* ---------- Accessibility (text scaling + filters) ---------- */
:root { --a11y-scale: 1; }
body { font-size: calc(15px * var(--a11y-scale)); }
.section-title { font-size: calc(48px * var(--a11y-scale)) !important; }
@media (max-width: 760px) { .section-title { font-size: calc(34px * var(--a11y-scale)) !important; } }
.product .name, .review-quote, .contact-info .v, .footer h5 + ul li, .news h3 {
  font-size-adjust: from-font;
}

html.a11y-contrast {
  --cream: #FFFFFF;
  --cream-2: #FFFFFF;
  --paper: #FFFFFF;
  --ink: #000000;
  --ink-2: #000000;
  --muted: #1A1A1A;
  --rose-1: #FFFFFF;
  --rose-2: #C8B5AC;
  --rose-3: #5A2A1A;
  --plum: #000000;
  --line: #000000;
}
html.a11y-contrast img,
html.a11y-contrast .hero-pro-tile img,
html.a11y-contrast .product .ph img,
html.a11y-contrast .review-img img,
html.a11y-contrast .cat-card .frame img {
  filter: contrast(1.1) saturate(0.6);
}
html.a11y-contrast .product, html.a11y-contrast .review-card,
html.a11y-contrast .cat-card, html.a11y-contrast .contact-form {
  border: 2px solid #000 !important;
}
html.a11y-contrast .cta-solid {
  background: #000 !important; color: #fff !important; border: 2px solid #000;
}

html.a11y-grayscale { filter: grayscale(1); }

html.a11y-underline a { text-decoration: underline !important; text-underline-offset: 3px; }

html.a11y-pause *,
html.a11y-pause *::before,
html.a11y-pause *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}
html.a11y-pause .tape-track { animation: none !important; transform: none !important; }

html.a11y-big-cursor, html.a11y-big-cursor * {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M4 2 L4 30 L12 22 L18 36 L24 34 L18 20 L30 20 Z' fill='%23000' stroke='%23fff' stroke-width='2'/></svg>") 4 2, auto !important;
}

/* ---------- A11y FAB ---------- */
.a11y-fab {
  position: fixed;
  bottom: 22px;
  inset-inline-start: 22px;
  z-index: 1500;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  border: none;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 280ms ease, background 280ms ease;
}
.a11y-fab:hover { transform: scale(1.06); }
.a11y-fab:focus-visible { outline: 3px solid var(--rose-3); outline-offset: 3px; }
.a11y-fab.is-open { background: var(--rose-3); }

/* ---------- A11y panel ---------- */
.a11y-panel {
  position: fixed;
  bottom: 86px;
  inset-inline-start: 22px;
  z-index: 1500;
  width: min(340px, calc(100vw - 32px));
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(21,17,12,0.12);
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
  padding: 22px 22px 18px;
  display: flex; flex-direction: column; gap: 18px;
  animation: a11yIn 280ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes a11yIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.a11y-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.a11y-head h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin: 4px 0 0; }
.a11y-head .eyebrow-en { color: var(--muted); }
.a11y-x {
  background: transparent; border: 1px solid rgba(21,17,12,0.2);
  width: 32px; height: 32px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); border-radius: 0;
  transition: background 200ms ease;
}
.a11y-x:hover { background: rgba(21,17,12,0.06); }

.a11y-section { display: flex; flex-direction: column; gap: 10px; }
.a11y-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.a11y-text-size {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.a11y-text-size button {
  background: transparent;
  border: 1px solid rgba(21,17,12,0.18);
  padding: 10px 0;
  cursor: pointer;
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1;
  transition: all 200ms ease;
}
.a11y-text-size button:hover { background: rgba(21,17,12,0.05); }
.a11y-text-size button.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.a11y-toggles { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid rgba(21,17,12,0.1); padding-top: 14px; }
.a11y-toggle {
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; border: none; padding: 10px 0;
  cursor: pointer; text-align: start;
  border-bottom: 1px solid rgba(21,17,12,0.06);
}
.a11y-toggle:last-child { border-bottom: none; }
.a11y-toggle-text { display: flex; flex-direction: column; gap: 2px; }
.a11y-toggle-l { font-size: 14px; color: var(--ink); }
.a11y-toggle-d { font-size: 11.5px; color: var(--muted); }
.a11y-switch {
  width: 36px; height: 20px;
  background: rgba(21,17,12,0.18);
  border-radius: 999px;
  position: relative;
  transition: background 240ms ease;
  flex-shrink: 0;
}
.a11y-switch .dot {
  position: absolute;
  top: 2px;
  inset-inline-start: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: inset-inline-start 240ms ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.a11y-toggle.on .a11y-switch { background: var(--rose-3); }
.a11y-toggle.on .a11y-switch .dot { inset-inline-start: 18px; }

.a11y-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid rgba(21,17,12,0.1);
  padding-top: 14px;
}
.a11y-reset {
  background: transparent;
  border: 1px solid rgba(21,17,12,0.2);
  padding: 8px 14px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.a11y-reset:hover { background: var(--ink); color: var(--cream); }
.a11y-foot .eyebrow-en { color: var(--muted); font-size: 9px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 1450;
  width: min(420px, calc(100vw - 44px));
  background: var(--ink);
  color: var(--cream);
  padding: 24px 28px 22px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
  animation: cookieIn 480ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.cookie-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 16px;
  position: relative;
}
.cookie-icon {
  grid-row: 1;
  grid-column: 1;
  align-self: start;
  color: var(--cream);
}
.cookie-text {
  grid-row: 1;
  grid-column: 2;
  display: flex; flex-direction: column; gap: 6px;
}
.cookie-text h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  margin: 0;
  color: var(--cream);
}
.cookie-text p {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(246,240,228,0.8);
  margin: 0;
}
.cookie-actions {
  grid-row: 2;
  grid-column: 1 / -1;
  display: flex; gap: 10px;
  flex-wrap: wrap;
}
.ck-btn {
  flex: 1;
  min-width: 130px;
  padding: 11px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--cream);
  transition: background 240ms ease, color 240ms ease;
}
.ck-btn.outline { background: transparent; color: var(--cream); }
.ck-btn.outline:hover { background: rgba(246,240,228,0.1); }
.ck-btn.solid { background: var(--cream); color: var(--ink); }
.ck-btn.solid:hover { background: #fff; }
.ck-close {
  position: absolute;
  top: -6px;
  inset-inline-end: -6px;
  width: 26px; height: 26px;
  background: transparent;
  border: none;
  color: rgba(246,240,228,0.7);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.ck-close:hover { color: var(--cream); }

@media (max-width: 480px) {
  .cookie-banner { inset-inline-end: 12px; bottom: 12px; padding: 20px 22px 18px; width: calc(100vw - 24px); }
  .cookie-inner { column-gap: 12px; }
  .cookie-text h4 { font-size: 17px; }
  .cookie-text p { font-size: 12px; }
  .a11y-fab { bottom: 14px; inset-inline-start: 14px; width: 46px; height: 46px; }
  .a11y-panel { bottom: 70px; inset-inline-start: 14px; width: calc(100vw - 28px); padding: 18px 18px 14px; }
}

/* Avoid overlap when both are open */
.cookie-banner ~ .a11y-fab,
body:has(.cookie-banner) .a11y-fab {
  /* keep a11y on opposite side, no change needed */
}

/* Focus visibility for keyboard a11y */
:where(button, a, input, textarea):focus-visible {
  outline: 2px solid var(--rose-3);
  outline-offset: 2px;
}

/* ---------- Scroll reveals & hero entry ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

[data-reveal-child] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(60ms * var(--i, 0));
  will-change: opacity, transform;
}
[data-reveal-child].is-in { opacity: 1; transform: none; }

/* Hero entry: wordmark, then meta, then slider */
.hero-anim   { animation: heroIn 900ms cubic-bezier(.2,.7,.2,1) both; }
.hero-anim-2 { animation: heroIn 900ms 220ms cubic-bezier(.2,.7,.2,1) both; }
.hero-anim-3 { animation: heroSlide 900ms 360ms cubic-bezier(.2,.7,.2,1) both; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroSlide {
  from { opacity: 0; transform: translateY(28px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

/* Letter-by-letter shimmer when wordmark enters */
.hero-pro-mark .big, .hero-pro-mark .small {
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 45%, var(--rose-3) 55%, var(--ink) 65%, var(--ink) 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hueSweep 4200ms 600ms ease-out 1 both;
}
@keyframes hueSweep {
  0%   { background-position: 100% 0; }
  60%  { background-position: 0% 0; }
  100% { background-position: -50% 0; -webkit-text-fill-color: var(--ink); }
}

/* Soft float on hero tiles when entering */
.hero-pro-tile img { animation: kenburns 18s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.04); }
}

/* Product card lift refinement */
.product { transition: transform 500ms cubic-bezier(.2,.7,.2,1), box-shadow 500ms ease; }
.product:hover { transform: translateY(-4px); }
.product .ph img { transition: transform 800ms cubic-bezier(.2,.7,.2,1); }
.product:hover .ph img { transform: scale(1.05); }

/* Category card hover micro-zoom */
.cat-card .frame img { transition: transform 900ms cubic-bezier(.2,.7,.2,1); }
.cat-card:hover .frame img { transform: scale(1.04); }

/* Review card subtle lift */
.review-card { transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.review-card:hover { transform: translateY(-3px); }

/* CTA shimmer on hover */
.cta-solid { position: relative; overflow: hidden; }
.cta-solid::after {
  content: "";
  position: absolute; top: 0; bottom: 0; inset-inline-start: -120%;
  width: 60%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transition: inset-inline-start 700ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.cta-solid:hover::after { inset-inline-start: 130%; }

/* Section title soft underline grow on enter */
.section-head[data-reveal] .section-title em {
  position: relative;
  display: inline-block;
}
.section-head[data-reveal] .section-title em::after {
  content: "";
  position: absolute; right: 0; left: 0; bottom: -4px;
  height: 1px;
  background: var(--rose-3);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 900ms 220ms cubic-bezier(.2,.7,.2,1);
}
.section-head[data-reveal].is-in .section-title em::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-child] { opacity: 1 !important; transform: none !important; }
  .hero-anim, .hero-anim-2, .hero-anim-3 { animation: none; }
  .hero-pro-mark .big, .hero-pro-mark .small {
    -webkit-text-fill-color: var(--ink);
    animation: none;
  }
  .hero-pro-tile img { animation: none; }
}
.flex-row { display: flex; align-items: center; gap: 12px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
