/* Strawberry Fields — editorial children's design house
   Palette tokens locked to CLAUDE-DESIGN.md §5 */
:root {
  --bg: #FBF4EE;        /* warm paper background */
  --bg-2: #F4EADD;      /* warmer paper for bands */
  --surface: #F6E4DD;   /* blush panels */
  --text: #2C2230;      /* plum-ink */
  --muted: #6F616A;     /* captions */
  --primary: #C0436A;   /* berry */
  --primary-ink: #8E2A4C;
  --secondary: #7FA66A; /* sage */
  --secondary-ink: #4F7341;
  --accent: #E9B44C;    /* sun */
  --terracotta: #C76B3F; /* from price card */
  --sky: #B7CFD7;       /* secondary note */
  --border: #EBDDD4;
  --focus: #E15A6C;

  --display: "Fraunces", "Times New Roman", serif;
  --ui: "Quicksand", "Helvetica Neue", system-ui, sans-serif;
  --body: "Inter", "Helvetica Neue", system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;

  --shadow-1: 0 1px 0 rgba(44,34,48,0.04), 0 8px 24px -16px rgba(44,34,48,0.18);
  --shadow-2: 0 2px 0 rgba(44,34,48,0.03), 0 18px 40px -22px rgba(44,34,48,0.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper grain — gives the editorial cream a touch of texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(199,107,63,0.04), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(127,166,106,0.05), transparent 45%);
  opacity: 1;
}

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

/* Typography utilities */
.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
.display-italic { font-family: var(--display); font-style: italic; font-weight: 300; letter-spacing: -0.01em; }
.ui { font-family: var(--ui); font-weight: 500; letter-spacing: 0.02em; }
.eyebrow { font-family: var(--ui); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; color: var(--primary); }
.muted { color: var(--muted); }
.price { font-family: var(--body); font-variant-numeric: tabular-nums; font-weight: 500; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--ui); font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-ink); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-soft { background: var(--surface); color: var(--text); }
.btn-soft:hover { background: #efd3c9; }
.btn-link { padding: 0; background: none; color: var(--text); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.btn-link:hover { color: var(--primary); }

/* Focus ring */
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

/* Layout */
.container { width: min(1320px, 100% - 48px); margin: 0 auto; position: relative; z-index: 1; }
.section { padding: 96px 0; position: relative; z-index: 1; }
.section--tight { padding: 64px 0; }
.section--blush { background: var(--surface); }
.section--paper { background: var(--bg-2); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 244, 238, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.utility-strip {
  background: var(--text); color: var(--bg);
  font-family: var(--ui); font-size: 12px; font-weight: 500;
  display: flex; justify-content: center; align-items: center; gap: 36px;
  padding: 8px 24px;
  letter-spacing: 0.04em;
}
.utility-strip .us-pill { display: inline-flex; align-items: center; gap: 8px; opacity: 0.9; }
.utility-strip .us-dot { width: 5px; height: 5px; border-radius: 999px; background: var(--accent); }

.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
}
.nav-row .nav-left { display: flex; gap: 28px; align-items: center; }
.nav-row .nav-right { display: flex; gap: 18px; align-items: center; justify-content: flex-end; }
.nav-link {
  font-family: var(--ui);
  font-size: 14px; font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  position: relative;
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--primary); }
.nav-link.has-menu::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-left: 6px;
  opacity: .7;
}

.brand-mark {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand-mark .berry { width: 28px; height: 28px; }

.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--text);
  position: relative;
  font-family: var(--ui);
  font-size: 14px;
}
.icon-btn:hover { background: var(--surface); }
.icon-btn .badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--primary); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 6px; border-radius: 999px;
  min-width: 18px; text-align: center;
  font-family: var(--ui);
}

/* Mega menu */
.megamenu {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  padding: 32px 0 40px;
  z-index: 49;
}
.megamenu .container { display: grid; grid-template-columns: 1fr 1fr 1fr 1.2fr; gap: 40px; }
.megamenu h4 { font-family: var(--ui); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; color: var(--muted); margin: 0 0 14px; }
.megamenu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.megamenu ul a {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
  display: inline-block;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}
.megamenu ul a:hover { color: var(--primary); border-bottom-color: var(--primary); }
.megamenu .mm-feature {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.megamenu .mm-feature img {
  position: absolute; top: 0; left: 0; right: 0;
  height: 60%; width: 100%; object-fit: cover;
  border-bottom: 1px solid var(--border);
}

/* Drawer */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(44,34,48,0.32);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(480px, 92vw);
  background: var(--bg);
  z-index: 81;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(44,34,48,0.25);
}
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.drawer-head h3 { font-family: var(--display); font-size: 24px; margin: 0; }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px 26px; }
.drawer-foot { padding: 20px 26px; border-top: 1px solid var(--border); background: var(--bg-2); }

.cart-line { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--border); }
.cart-line .cl-img { width: 72px; height: 72px; border-radius: var(--r-md); background: var(--surface); overflow: hidden; }
.cart-line .cl-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-line .cl-vendor { font-family: var(--ui); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.cart-line .cl-title { font-family: var(--display); font-size: 17px; line-height: 1.2; margin: 2px 0 6px; }
.cart-line .cl-qty { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ui); font-size: 13px; }
.cart-line .cl-qty button { width: 22px; height: 22px; border-radius: 999px; background: var(--surface); }
.cart-line .cl-price { font-family: var(--body); font-weight: 600; font-size: 14px; align-self: start; text-align: right; }
.cart-line .cl-remove { font-family: var(--ui); font-size: 11px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.cart-line .cl-remove:hover { color: var(--primary); }

/* Hero (original split — kept as a Tweak option) */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}

/* ─── Magazine-cover hero (default redesign) ──────────────────────────── */
.hero-mag {
  position: relative;
  background: var(--bg);
  padding-top: 0;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-mag .container { position: relative; z-index: 2; }

/* Awning — recreates the storefront */
.awning {
  position: relative;
  background: var(--primary);
  height: 78px;
  overflow: visible;
}
.awning .scallops {
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 28px;
  width: 100%;
  display: block;
}
.awning .pole {
  position: absolute;
  left: 50%; top: 100%;
  width: 2px; height: 26px;
  background: var(--primary);
  transform: translateX(-50%);
}
.awning .berry-pendant {
  position: absolute;
  left: 50%; top: 100%;
  margin-top: 38px;
  transform: translateX(-50%);
  filter: drop-shadow(0 6px 10px rgba(44,34,48,0.18));
  z-index: 3;
}

/* Masthead strip */
.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 0 12px;
  border-bottom: 1px solid var(--border);
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.masthead .mh-left  { text-align: left; }
.masthead .mh-right { text-align: right; }
.masthead .mh-center { font-family: var(--display); font-style: italic; font-size: 13px; letter-spacing: 0; text-transform: none; color: var(--text); }
.masthead .mh-rule { display: inline-block; width: 24px; height: 1px; background: var(--muted); vertical-align: middle; margin: 0 10px; }

/* Cover headline */
.cover-headline {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-align: center;
  margin: 64px 0 40px;
  position: relative;
}
.cover-headline .ln {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}
.cover-headline .ln-1 { font-size: clamp(60px, 9vw, 132px); }
.cover-headline .ln-2 { font-size: clamp(74px, 11vw, 168px); }
.cover-headline .ln-3 { font-size: clamp(50px, 7.5vw, 104px); margin-top: 6px; }
.cover-headline .ital { font-style: italic; color: var(--primary); font-weight: 300; }
.cover-headline .inline-img {
  display: inline-flex;
  width: clamp(80px, 12vw, 160px);
  height: clamp(56px, 8vw, 96px);
  border-radius: 999px;
  background: var(--surface);
  vertical-align: middle;
  overflow: hidden;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.cover-headline .inline-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cover-headline .inline-strawberry { display: inline-flex; align-items: center; vertical-align: middle; }
.cover-headline .ampersand { font-style: italic; color: var(--terracotta); }
.cover-headline .ln-4 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0;
  color: var(--muted);
  display: block;
  margin-top: 22px;
  line-height: 1.2;
}

/* Cover floating cut-outs — constrained to the headline area */
.cover-cuts {
  position: absolute;
  left: 0; right: 0;
  top: 110px; /* below masthead */
  height: clamp(420px, 56vh, 640px);
  pointer-events: none;
  z-index: 1;
}
.cover-cut {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cover-cut .cut-img {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 10px;
  box-shadow: 0 18px 30px -18px rgba(44,34,48,0.25);
  border: 1px solid var(--border);
}
.cover-cut .cut-img img { display: block; width: 100%; height: 100%; object-fit: contain; }
.cover-cut .cut-cap {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-1);
}
.cover-cut .cut-num {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--primary);
}

.cut-bike {
  left: 2%; top: 24%;
  width: 220px;
  transform: rotate(-4deg);
}
.cut-bike .cut-img { width: 220px; height: 160px; background: #DBE6E8; }

.cut-train {
  right: 1%; top: 18%;
  width: 230px;
  transform: rotate(5deg);
}
.cut-train .cut-img { width: 230px; height: 150px; background: var(--bg); }

.cut-doorway {
  left: 8%; bottom: 4%;
  width: 150px;
  transform: rotate(-7deg);
}
.cut-doorway .cut-img { width: 150px; height: 180px; background: var(--surface); }

.cut-pens {
  right: 8%; bottom: 8%;
  width: 140px;
  transform: rotate(8deg);
}
.cut-pens .cut-img { width: 140px; height: 110px; background: #F2E0C8; }

/* Hero foot — redesigned: coverlines + cover star + status */
.cover-foot {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  padding: 40px 0 0;
  border-top: 1px solid var(--text);
  margin-top: 88px;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

/* Coverlines column (left) */
.cover-lines {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 32px;
}
.cover-lines .cl-head {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.cover-lines .cl-head::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}
.cover-lines .cl-line {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  cursor: pointer;
  transition: padding-left .15s ease, color .15s;
}
.cover-lines .cl-line:hover { padding-left: 6px; color: var(--primary); }
.cover-lines .cl-line:last-child { border-bottom: 0; }
.cover-lines .cl-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--primary);
  line-height: 1;
}
.cover-lines .cl-text {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.cover-lines .cl-text em { font-style: italic; color: var(--primary); }
.cover-lines .cl-page {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.cover-lines .cl-bottom {
  display: flex; align-items: center; gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* Cover star (right) — featured product card */
.cover-star {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.cover-star::before {
  content: "★ Cover star";
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  z-index: 2;
}
.cover-star .cs-img {
  aspect-ratio: 16/10;
  background: #F2E0C8;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.cover-star .cs-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.cover-star .cs-img .cs-badge {
  position: absolute;
  right: 12px; bottom: 12px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 999px;
}
.cover-star .cs-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.cover-star .cs-vendor {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cover-star .cs-title {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.005em;
  margin: 4px 0 6px;
  line-height: 1.1;
}
.cover-star .cs-price {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--primary);
}
.cover-star .cs-foot {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.cover-star .cs-foot .btn { flex: 1; justify-content: center; }

/* Live status — open today / hours */
.live-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--r-lg);
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}
.live-status .ls-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(233,180,76,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,180,76,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(233,180,76,0.0); }
}
.live-status .ls-text {
  font-family: var(--ui);
  font-size: 13px;
  display: flex; align-items: baseline; gap: 10px;
  flex-wrap: wrap;
}
.live-status .ls-text strong { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 16px; }
.live-status .ls-text .sep { color: rgba(255,255,255,0.4); }
.live-status .ls-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
}
.live-status .ls-bar-fill {
  position: absolute; top: 0; bottom: 0; left: 0;
  background: var(--accent);
}

/* Folio (already present) — restyle */
.folio {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -32px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  z-index: 3;
  background: var(--bg);
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.folio .folio-rule { width: 18px; height: 1px; background: var(--muted); display: inline-block; }

@media (max-width: 980px) {
  .cover-foot { grid-template-columns: 1fr; }
  .cover-lines { padding-right: 0; }
}

@media (max-width: 980px) {
  .cover-cut { display: none; }
  .cover-foot { grid-template-columns: 1fr; text-align: center; }
  .cover-foot .stats { justify-content: center; }
  .cover-headline .ln { flex-wrap: wrap; }
}
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--primary); }
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 20px 0 24px;
}
.hero h1 .ital { font-style: italic; font-weight: 300; color: var(--primary); }
.hero h1 .underline {
  background-image: linear-gradient(transparent 80%, var(--accent) 80%);
  padding: 0 4px;
}
.hero p.lede { font-size: 18px; color: var(--muted); max-width: 52ch; }
.hero-ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 36px;
  display: flex; gap: 28px;
  font-family: var(--ui); font-size: 12px;
  color: var(--muted);
}
.hero-meta strong { display: block; font-family: var(--display); color: var(--text); font-size: 24px; font-style: italic; font-weight: 400; }

/* Hero collage */
.hero-collage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 560px;
  margin-left: auto;
}
.hero-collage .tile {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-2);
}
.hero-collage .tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .tile.contain img { object-fit: contain; padding: 12px; }
.hero-collage .t1 { top: 0; left: 6%; width: 56%; height: 50%; transform: rotate(-3deg); }
.hero-collage .t2 { top: 14%; right: 0; width: 38%; height: 32%; transform: rotate(4deg); background: var(--accent); }
.hero-collage .t3 { bottom: 4%; left: 0; width: 40%; height: 38%; transform: rotate(2deg); background: var(--sky); }
.hero-collage .t4 { bottom: 0; right: 4%; width: 52%; height: 46%; transform: rotate(-2deg); }
.hero-collage .tag {
  position: absolute;
  padding: 6px 12px;
  background: var(--bg);
  border-radius: 999px;
  font-family: var(--ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: var(--shadow-1);
}
.hero-collage .tag.t1tag { top: 4%; left: 2%; color: var(--primary); }
.hero-collage .tag.t4tag { bottom: 12%; right: 0; color: var(--secondary-ink); }

/* Decorative motifs (sun, leaf, blob, squiggle) — same family as the price card art */
.motif { position: absolute; pointer-events: none; z-index: 0; }

/* Marquee strip */
.marquee {
  background: var(--text); color: var(--bg);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--display); font-style: italic;
  font-size: 22px;
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Shop by world */
.worlds {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.world {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.world:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.world > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.world.contain > img { object-fit: contain; padding: 18px; }
.world .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(44,34,48,0.55) 100%);
  z-index: 1;
}
.world.contain .scrim {
  background: linear-gradient(180deg, transparent 60%, rgba(44,34,48,0.3) 100%);
}
.world .world-meta {
  position: relative; z-index: 2;
  color: #fff;
  display: flex; justify-content: space-between; align-items: flex-end;
  width: 100%;
}
.world.dark .world-meta { color: var(--text); }
.world .world-title { font-family: var(--display); font-size: 30px; line-height: 1; letter-spacing: -0.01em; }
.world .world-count { font-family: var(--ui); font-size: 12px; opacity: 0.85; }
.world .world-arrow {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.world.w-rooms    { grid-column: span 6; grid-row: span 2; }
.world.w-baby     { grid-column: span 3; grid-row: span 2; }
.world.w-toys     { grid-column: span 3; grid-row: span 1; }
.world.w-books    { grid-column: span 3; grid-row: span 1; }
.world.w-outfits  { grid-column: span 3; grid-row: span 1; }
.world.w-outdoors { grid-column: span 3; grid-row: span 1; }
.world.w-celebrate{ grid-column: span 3; grid-row: span 1; }
.world.w-sale     { grid-column: span 3; grid-row: span 1; }

/* Product cards row */
.picks-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
}
.picks-head h2 { font-family: var(--display); font-size: clamp(36px, 4.5vw, 56px); margin: 8px 0 0; line-height: 1.02; letter-spacing: -0.02em; }
.picks-tabs { display: flex; gap: 4px; background: var(--surface); padding: 4px; border-radius: 999px; }
.picks-tabs button {
  font-family: var(--ui); font-size: 13px; font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--text);
}
.picks-tabs button[aria-pressed="true"] { background: var(--bg); box-shadow: var(--shadow-1); color: var(--primary); }

.picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pcard {
  display: flex; flex-direction: column;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.pcard .pcard-img {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: transform .3s ease;
}
.pcard:hover .pcard-img { transform: translateY(-2px); }
.pcard .pcard-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform .4s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.04); }
.pcard .pcard-add {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--text); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .2s, transform .25s;
}
.pcard:hover .pcard-add { opacity: 1; transform: translateY(0); }
.pcard .pcard-add:hover { background: var(--primary); }
.pcard .pcard-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--ui);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary);
}
.pcard .pcard-vendor { font-family: var(--ui); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 14px 0 4px; }
.pcard .pcard-title { font-family: var(--display); font-size: 18px; line-height: 1.18; letter-spacing: -0.005em; margin: 0 0 6px; }
.pcard .pcard-price { font-family: var(--body); font-weight: 500; font-size: 14px; }

/* Editorial split / quote */
.editorial-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.editorial-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.editorial-quote .berry { color: var(--primary); }
.editorial-pic {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/5;
  position: relative;
}
.editorial-pic img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }

/* Hidden Playground */
.hpg-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hpg-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.hpg-card h3 { font-family: var(--display); font-size: 38px; margin: 0 0 6px; letter-spacing: -0.01em; }
.hpg-card .free-line { font-family: var(--ui); font-size: 13px; color: var(--secondary-ink); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.hpg-card .free-line::before { content: ""; width: 8px; height: 8px; background: var(--secondary); border-radius: 999px; }

.rate-table {
  width: 100%;
  border-collapse: collapse;
}
.rate-table th, .rate-table td {
  text-align: left;
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
  font-family: var(--ui); font-size: 13px;
}
.rate-table th {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.rate-table tbody tr:hover { background: var(--bg-2); }
.rate-table .row-label { font-family: var(--ui); font-weight: 600; color: var(--terracotta); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; }
.rate-table .row-sub { font-family: var(--display); font-style: italic; font-size: 12px; color: var(--muted); display: block; text-transform: none; letter-spacing: 0; font-weight: 400; }
.rate-table .price-cell { font-family: var(--display); font-size: 18px; color: var(--text); }
.rate-table .price-cell.free { color: var(--secondary-ink); font-style: italic; }

.hpg-calc {
  margin-top: 22px;
  padding: 18px;
  background: var(--surface);
  border-radius: var(--r-md);
}
.hpg-calc-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.hpg-calc-label { font-family: var(--ui); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.hpg-calc-segs { display: inline-flex; gap: 4px; background: var(--bg); padding: 4px; border-radius: 999px; }
.hpg-calc-segs button { font-family: var(--ui); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px; color: var(--text); }
.hpg-calc-segs button[aria-pressed="true"] { background: var(--primary); color: #fff; }
.hpg-calc-total { font-family: var(--display); font-size: 22px; color: var(--text); }
.hpg-calc-total .free { color: var(--secondary-ink); font-style: italic; }

.hpg-illus {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
}

/* Values bar */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value {
  padding: 24px;
  border-right: 1px solid var(--border);
}
.value:last-child { border-right: 0; }
.value-num { font-family: var(--display); font-style: italic; font-size: 16px; color: var(--primary); }
.value-title { font-family: var(--display); font-size: 22px; letter-spacing: -0.01em; margin: 6px 0 8px; }
.value-body { font-size: 14px; color: var(--muted); }

/* Brands */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.brand-cell {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  min-height: 110px;
  text-align: center;
  transition: background .2s, color .2s;
  position: relative;
  cursor: pointer;
}
.brand-cell:hover { background: var(--text); color: var(--bg); }
.brand-cell .brand-count { font-family: var(--ui); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; position: absolute; top: 10px; right: 12px; opacity: 0.5; }

/* Gifting block */
.gifting {
  background: var(--primary); color: #fff;
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.gifting h2 { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); line-height: 1.02; margin: 0 0 16px; font-weight: 300; letter-spacing: -0.02em; }
.gifting h2 .ital { font-style: italic; color: var(--accent); }
.gifting p { color: rgba(255,255,255,0.85); max-width: 38ch; }
.gifting .btn-light { background: var(--bg); color: var(--primary); }
.gifting .btn-light:hover { background: var(--accent); color: var(--text); }
.gifting .btn-out { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.gifting .btn-out:hover { background: rgba(255,255,255,0.1); }
.gifting-illus {
  position: relative;
  aspect-ratio: 1/1;
}

/* Visit */
.visit { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.visit h2 { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); margin: 0 0 8px; font-weight: 300; letter-spacing: -0.02em; }
.visit .v-coord { font-family: var(--display); font-style: italic; color: var(--primary); font-size: 22px; margin-bottom: 24px; }
.visit dl { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; margin: 24px 0 0; }
.visit dt { font-family: var(--ui); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 6px; }
.visit dd { margin: 0; font-family: var(--display); font-size: 22px; letter-spacing: -0.01em; }

.map-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 1/1;
  position: relative;
}
.map-card .map-pin {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%);
  z-index: 2;
}
.map-card .map-label {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  background: var(--bg);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--ui); font-size: 12px; font-weight: 600;
  display: inline-flex; gap: 8px; align-items: center;
  box-shadow: var(--shadow-1);
  white-space: nowrap;
}

/* Happenings list */
.happenings { display: grid; grid-template-columns: 1fr; gap: 0; }
.happening {
  display: grid; grid-template-columns: 110px 1.4fr 1fr auto;
  gap: 24px; align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding-left .2s ease, background .2s;
}
.happening:hover { padding-left: 12px; }
.happening .h-date {
  font-family: var(--display);
  font-style: italic;
}
.happening .h-date-day { font-size: 32px; line-height: 1; color: var(--primary); }
.happening .h-date-mon { font-size: 14px; color: var(--muted); margin-top: 4px; display: block; }
.happening .h-title { font-family: var(--display); font-size: 24px; letter-spacing: -0.01em; }
.happening .h-meta { font-family: var(--ui); font-size: 13px; color: var(--muted); }
.happening .h-cta { font-family: var(--ui); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--primary); display: inline-flex; align-items: center; gap: 8px; }

/* Footer */
.footer { background: var(--text); color: var(--bg); padding: 80px 0 24px; margin-top: 96px; }
.footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer h5 { font-family: var(--ui); font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-family: var(--ui); font-size: 14px; }
.footer ul a:hover { color: var(--accent); }
.footer .ft-newsletter input {
  width: 100%;
  background: transparent;
  color: var(--bg);
  border: 0; border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 12px 0;
  font-family: var(--body);
  font-size: 14px;
}
.footer .ft-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer .ft-newsletter input:focus { outline: none; border-bottom-color: var(--accent); }
.footer .ft-newsletter button { margin-top: 14px; }
.footer .ft-brand { font-family: var(--display); font-style: italic; font-size: 34px; }
.footer .ft-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 60px; padding-top: 22px; font-family: var(--ui); font-size: 12px; color: rgba(255,255,255,0.6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

/* Toast */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--text); color: var(--bg);
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--ui); font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-2);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  display: inline-flex; align-items: center; gap: 10px;
}
.toast .toast-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* RTL Arabic — when locale flips */
[dir="rtl"] body { font-family: "Noto Kufi Arabic", var(--body); }
[dir="rtl"] .hero h1, [dir="rtl"] .megamenu ul a { font-family: "Noto Kufi Arabic", var(--display); }
[dir="rtl"] .nav-row { direction: rtl; }
[dir="rtl"] .drawer { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .drawer.open { transform: translateX(0); }

/* Responsive (the prototype targets desktop, but doesn't catastrophically break) */
@media (max-width: 980px) {
  .hero .container,
  .hpg-wrap, .visit, .editorial-split, .gifting { grid-template-columns: 1fr; }
  .picks-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .footer .container { grid-template-columns: 1fr 1fr; }
  .worlds { grid-auto-rows: 140px; }
  .world.w-rooms { grid-column: span 12; }
  .world.w-baby { grid-column: span 6; }
}
