/* ============================================================
   TONGRAAL — Shop Social Profile
   Cinematic · Editorial · Human · Community
   ============================================================ */

/* ── Cover / Banner ── */
.shop-cover {
  position: relative;
  height: 68vh;
  min-height: 440px;
  overflow: hidden;
  background: #1a1410;
}

.shop-cover__banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(50%) contrast(1.1) brightness(0.75);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.shop-cover:hover .shop-cover__banner { transform: scale(1); }

.shop-cover__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(20,14,10,0.18) 0%,
      rgba(20,14,10,0.0) 30%,
      rgba(20,14,10,0.55) 68%,
      rgba(20,14,10,0.92) 100%);
}

/* Transparent nav over hero */
.nav--over-cover {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  background: transparent !important;
  border-bottom: 1px solid rgba(255,253,249,0.1) !important;
}
.nav--over-cover .brand { color: rgba(255,253,249,0.95) !important; }
.nav--over-cover .nav-links a { color: rgba(255,253,249,0.75) !important; }
.nav--over-cover .nav-cta {
  color: rgba(255,253,249,0.9) !important;
  border-color: rgba(255,253,249,0.3) !important;
  background: rgba(255,253,249,0.1) !important;
}
.nav--over-cover .nav-cta:hover { background: rgba(255,253,249,0.2) !important; }
.nav--over-cover .nav-search {
  background: rgba(255,253,249,0.1) !important;
  border-color: rgba(255,253,249,0.2) !important;
}
.nav--over-cover .nav-search input { color: #fff !important; }
.nav--over-cover .nav-search input::placeholder { color: rgba(255,255,255,0.45) !important; }
.nav--over-cover .city-pill {
  background: rgba(255,253,249,0.15) !important;
  color: rgba(255,253,249,0.7) !important;
}
.nav--over-cover .icon-btn { color: rgba(255,253,249,0.8) !important; }

/* Cover bottom content */
.shop-cover__bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem) 0;
  display: flex;
  align-items: flex-end;
  gap: 1.75rem;
  z-index: 10;
}

/* ── Profile Avatar (overlapping) ── */
.shop-avatar-wrap {
  flex-shrink: 0;
  position: relative;
  margin-bottom: -2.75rem;
}

.shop-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFFDF9;
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
  display: block;
  background: #3d2b1f;
}

.shop-avatar__badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 28px;
  height: 28px;
  background: var(--olive);
  border-radius: 50%;
  border: 2.5px solid #FFFDF9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-avatar__badge svg { width: 12px; height: 12px; color: #fff; stroke-width: 3; }

/* Cover info */
.shop-cover__info {
  flex: 1;
  padding-bottom: 1.75rem;
  min-width: 0;
}

.shop-cover__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.55);
  margin-bottom: 0.35rem;
}
.shop-cover__eyebrow-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.shop-cover__name {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-style: italic;
  font-weight: 500;
  color: #FFFDF9;
  line-height: 1.0;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.shop-cover__tagline {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,253,249,0.65);
  line-height: 1.45;
  max-width: 440px;
}

/* Cover right: actions */
.shop-cover__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  padding-bottom: 2rem;
  flex-shrink: 0;
}

.btn-follow {
  padding: 0.65rem 2rem;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-follow:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-follow.following {
  background: rgba(255,253,249,0.12);
  border: 1.5px solid rgba(255,253,249,0.35);
  color: rgba(255,253,249,0.8);
}

.shop-cover__mini-btns {
  display: flex;
  gap: 0.5rem;
}

.mini-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,253,249,0.12);
  border: 1px solid rgba(255,253,249,0.2);
  color: rgba(255,253,249,0.8);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.mini-btn:hover { background: rgba(255,253,249,0.22); border-color: rgba(255,253,249,0.4); }
.mini-btn svg { width: 15px; height: 15px; stroke-width: 2; }

/* ── Profile Stats Bar ── */
.shop-profile-bar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 1px 0 var(--border);
}

.shop-profile-bar__inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 3.25rem;
}

.shop-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.875rem 1.75rem 1.125rem;
  border-right: 1px solid var(--border);
}
.shop-stat:first-child { align-items: flex-start; padding-left: 0; }
.shop-stat:last-child { border-right: 0; }

.shop-stat__val {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2px;
}

.shop-stat__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.shop-profile-bar__tabs {
  margin-left: auto;
  display: flex;
  gap: 0;
}

.shop-tab {
  padding: 1.125rem 1.375rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  border: 0;
  background: none;
  font-family: var(--sans);
  border-bottom: 2.5px solid transparent;
  transition: all 0.15s;
}
.shop-tab:hover { color: var(--ink); }
.shop-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Identity Strip ── */
.identity-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem clamp(1.5rem, 4vw, 3.5rem);
  overflow-x: auto;
  scrollbar-width: none;
}
.identity-strip::-webkit-scrollbar { display: none; }

.identity-strip__inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.id-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--ink-soft);
  white-space: nowrap;
  cursor: default;
  transition: all 0.15s;
  flex-shrink: 0;
}
.id-tag:hover { border-color: var(--accent); color: var(--accent-deep); }
.id-tag--accent {
  background: rgba(196,106,74,0.08);
  border-color: rgba(196,106,74,0.22);
  color: var(--accent-deep);
}
.id-tag--olive {
  background: rgba(110,122,94,0.1);
  border-color: rgba(110,122,94,0.25);
  color: var(--olive);
}

/* ============================================================
   PAGE BODY SECTIONS
   ============================================================ */
.shop-body { background: var(--bg); }

.sp { /* section padding */
  max-width: 1480px;
  margin: 0 auto;
  padding: 4.5rem clamp(1.5rem, 4vw, 3.5rem);
}

.sp--alt {
  background: var(--card);
  max-width: 100%;
}
.sp--alt .sp-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 4.5rem clamp(1.5rem, 4vw, 3.5rem);
}

.sp__eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 0.4rem;
}

.sp__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.sp__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.25rem;
}

.sp__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}
.sp__link:hover { text-decoration: underline; }

/* ============================================================
   OWNER STORY — 2 col portrait + text
   ============================================================ */
.story-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4.5rem;
  align-items: start;
}

.story-portrait {
  position: relative;
}

.story-portrait__frame {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 4px 40px rgba(31,25,22,0.18);
}
.story-portrait__frame img { width:100%;height:100%;object-fit:cover;display:block; }

.story-portrait__caption {
  margin-top: 1rem;
}
.story-portrait__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.story-portrait__role {
  font-size: 12px;
  color: var(--ink-mute);
}

.story-text {}

.story-pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.38;
  letter-spacing: -0.01em;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.story-body {
  font-size: 15px;
  line-height: 1.82;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.story-body p { margin: 0; }

.story-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.story-val {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============================================================
   VISUAL FEED — Instagram/Pinterest masonry
   ============================================================ */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 10px;
}

.fi { /* feed item */
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--border);
}

.fi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s;
}
.fi:hover img { transform: scale(1.06); filter: brightness(0.82); }

.fi--tall  { grid-row: span 2; }
.fi--wide  { grid-column: span 2; }
.fi--hero  { grid-column: span 2; grid-row: span 2; }

.fi__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,0.72) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.875rem;
}
.fi:hover .fi__overlay { opacity: 1; }

.fi__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,253,249,0.9);
  letter-spacing: 0.05em;
}

.fi__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  background: rgba(20,14,10,0.6);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,253,249,0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fi__heart {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(20,14,10,0.5);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 0;
  cursor: pointer;
  color: rgba(255,253,249,0.85);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s;
}
.fi:hover .fi__heart { opacity: 1; }
.fi__heart.liked { opacity: 1; color: #FF6B6B; }

.feed-more {
  text-align: center;
  padding: 2.5rem 0 0;
}
.feed-more-btn {
  padding: 0.75rem 2.5rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
}
.feed-more-btn:hover { border-color: var(--hair); background: var(--bg); color: var(--ink); }

/* ============================================================
   COLLECTIONS / MOODBOARDS — horizontal rail
   ============================================================ */
.collections-rail-wrap {
  padding: 0 0 0 clamp(1.5rem, 4vw, 3.5rem);
}

.collections-rail {
  display: flex;
  gap: 1.125rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  padding-right: clamp(1.5rem, 4vw, 3.5rem);
}
.collections-rail::-webkit-scrollbar { display: none; }

.coll-card {
  flex-shrink: 0;
  width: 245px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: 0 2px 20px rgba(31,25,22,0.1);
  transition: transform 0.25s;
}
.coll-card:hover { transform: translateY(-3px); }

.coll-card__img {
  height: 320px;
  overflow: hidden;
}
.coll-card__img img { width:100%;height:100%;object-fit:cover;transition:transform 0.5s; }
.coll-card:hover .coll-card__img img { transform: scale(1.07); }

.coll-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,0.85) 0%, rgba(20,14,10,0.05) 55%);
}

.coll-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
}

.coll-card__eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.5);
  margin-bottom: 3px;
}

.coll-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: #FFFDF9;
  line-height: 1.2;
  margin-bottom: 5px;
}

.coll-card__count {
  font-size: 11px;
  color: rgba(255,253,249,0.5);
}

/* ============================================================
   EDITORIAL OBJECTS — atmospheric product display
   ============================================================ */
.ed-objects { display: flex; flex-direction: column; gap: 5rem; }

.ed-obj {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.ed-obj--flip { direction: rtl; }
.ed-obj--flip > * { direction: ltr; }

.ed-obj__visual { position: relative; }

.ed-obj__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 60px rgba(31,25,22,0.2);
  display: block;
}

.ed-obj__label {
  position: absolute;
  bottom: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.425rem 1rem;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 2px 16px rgba(0,0,0,0.14);
}
.ed-obj__label svg { width:12px;height:12px;stroke-width:2;color:var(--olive); }

.ed-obj__text {}

.ed-obj__cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.75rem;
  display: block;
}

.ed-obj__name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.ed-obj__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

.ed-obj__price-row {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.ed-obj__price {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}

.ed-obj__ship {
  font-size: 12px;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.ed-obj__ship svg { width:12px;height:12px;stroke-width:2; }

.ed-obj__ctas {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn-bag {
  padding: 0.8rem 2.25rem;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-bag:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-bag svg { width: 15px; height: 15px; stroke-width: 2; }

.btn-heart {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: none;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.15s;
}
.btn-heart:hover { border-color: #E86452; color: #E86452; }
.btn-heart.active { background: #FFF0EE; border-color: #E86452; color: #E86452; }

/* ============================================================
   OWNER MANIFESTO — dark, cinematic
   ============================================================ */
.manifesto {
  background: #1A1410;
  padding: 6rem clamp(1.5rem, 4vw, 3.5rem);
}

.manifesto__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.manifesto__portrait {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,253,249,0.18);
  margin: 0 auto 1.5rem;
  display: block;
}

.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  font-style: italic;
  color: #FFFDF9;
  line-height: 1.42;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}

.manifesto__attr {
  font-size: 13px;
  color: rgba(255,253,249,0.4);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

.manifesto__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255,253,249,0.12);
  border-radius: 100px;
  font-size: 12.5px;
  color: rgba(255,253,249,0.45);
  cursor: default;
}
.manifesto__pill-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============================================================
   DISCOVERY — Cross-shop rails
   ============================================================ */
.disc-outer {
  padding: 0 0 0 clamp(1.5rem, 4vw, 3.5rem);
}

.disc-head {
  padding-right: clamp(1.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

.disc-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  padding-right: clamp(1.5rem, 4vw, 3.5rem);
}
.disc-rail::-webkit-scrollbar { display: none; }

/* Shop discovery card */
.disc-shop {
  flex-shrink: 0;
  width: 215px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s;
}
.disc-shop:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.disc-shop__cover {
  height: 120px;
  overflow: hidden;
  position: relative;
}
.disc-shop__cover img { width:100%;height:100%;object-fit:cover;transition:transform 0.4s; }
.disc-shop:hover .disc-shop__cover img { transform: scale(1.06); }

.disc-shop__avatar {
  position: absolute;
  bottom: -14px; left: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--card);
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.disc-shop__body { padding: 1.25rem 1rem 1rem; }

.disc-shop__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 2px;
}
.disc-shop__meta { font-size: 11.5px; color: var(--ink-mute); margin-bottom: 0.5rem; }
.disc-shop__why {
  font-size: 11px;
  color: var(--olive);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.disc-shop__why svg { width:10px;height:10px;stroke-width:2.5; }

/* Object discovery card */
.disc-obj {
  flex-shrink: 0;
  width: 175px;
  text-decoration: none;
  transition: transform 0.2s;
}
.disc-obj:hover { transform: translateY(-2px); }

.disc-obj__img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.625rem;
  background: var(--border);
}
.disc-obj__img img { width:100%;height:100%;object-fit:cover;transition:transform 0.4s; }
.disc-obj:hover .disc-obj__img img { transform: scale(1.06); }

.disc-obj__shop { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; color: var(--olive); text-transform: uppercase; margin-bottom: 2px; }
.disc-obj__name { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; line-height: 1.35; }
.disc-obj__price { font-size: 13px; color: var(--ink-mute); }

/* ── Neighborhood grid ── */
.nbhd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
}

.nbhd-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  text-decoration: none;
  display: block;
  transition: transform 0.25s;
}
.nbhd-card:hover { transform: translateY(-2px); }

.nbhd-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
  transition: transform 0.4s, filter 0.3s;
}
.nbhd-card:hover img { transform: scale(1.05); filter: brightness(0.65); }

.nbhd-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,0.75) 0%, transparent 55%);
}

.nbhd-card__text {
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
}
.nbhd-card__name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: #FFFDF9;
  font-weight: 500;
  display: block;
}
.nbhd-card__count { font-size: 11px; color: rgba(255,253,249,0.55); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .story-layout { grid-template-columns: 260px 1fr; gap: 3rem; }
  .ed-obj { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .nbhd-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .shop-cover { height: 56vh; }
  .shop-cover__bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .shop-cover__actions { flex-direction: row; align-items: center; padding-bottom: 1rem; }
  .shop-avatar { width: 84px; height: 84px; }
  .shop-cover__name { font-size: 2rem; }
  .shop-profile-bar__inner { padding-top: 2.5rem; flex-wrap: wrap; gap: 0; }
  .shop-profile-bar__tabs { width: 100%; overflow-x: auto; }
  .story-layout { grid-template-columns: 1fr; }
  .story-portrait__frame { aspect-ratio: 16/9; }
  .ed-obj { grid-template-columns: 1fr; }
  .ed-obj--flip { direction: ltr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .nbhd-grid { grid-template-columns: repeat(2, 1fr); }
}
