/* ==========================================================================
   Café Chico — single-page index styles
   Hero + Highlights + Visit-strip + Story + Values + Contact
   ========================================================================== */

/* ---------- Hero brand mark (top right of hero) ---------- */
.hero__brand {
  position: absolute;
  top: clamp(16px, 3vh, 32px);
  right: clamp(16px, 3vw, 40px);
  z-index: 3;
  display: block;
  width: clamp(240px, 32vw, 440px);   /* doubled from clamp(120px, 16vw, 220px) per user 27 Aug 2026 */
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.70));   /* 70% black shadow, deeper + wider per user */
  opacity: 1;
  animation: heroBrandIn 1s var(--ease-soft) 0.2s both;
}
@keyframes heroBrandIn {
  from { opacity: 0; transform: translateY(-12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__brand { animation: none; opacity: 1; }
}

/* ---------- Section backgrounds ---------- */
.bg-cream { background: var(--bg); }
.bg-paper { background: var(--surface); }
.bg-dark  { background: var(--bg-dark); color: oklch(95% 0.012 80); }

/* ---------- Album (3D circular ring of featured dishes) ---------- */
/* ---------- 6 popular dishes grid (replaces album) ---------- */
.popular {
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);   /* cream → fully transparent bottom so the body wall-tile shows through (user 31 Aug 2026) */
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.popular .section-head--center {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.popular__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
@media (max-width: 880px) {
  .popular__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}
@media (max-width: 520px) {
  .popular__grid { grid-template-columns: 1fr; }
}

.popular__card {
  display: block;
  text-decoration: none;
  color: var(--fg);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 16px 40px oklch(20% 0.02 145 / 0.18), 0 4px 8px oklch(20% 0.02 145 / 0.10);
  transition: transform 280ms var(--ease-soft), box-shadow 280ms var(--ease-soft);
}
.popular__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px oklch(20% 0.02 145 / 0.28), 0 6px 12px oklch(20% 0.02 145 / 0.14);
}
.popular__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: oklch(92% 0.01 80);
}
.popular__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-soft);
}
.popular__card:hover .popular__photo img {
  transform: scale(1.06);
}
.popular__name {
  font-family: "Fraunces", var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 20px 22px 24px;
  color: var(--fg);
}
@media (max-width: 520px) {
  .popular__name { padding: 16px 18px 20px; }
}

/* legacy highlights class kept as alias */
.highlights { background: var(--bg); padding-top: clamp(64px, 9vw, 128px); }

/* ---------- Story block ---------- */
.story {
  background: var(--bg);
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0;
}

/* Opening photo + title */
.story__hero {
  position: relative;
  margin-bottom: clamp(72px, 9vw, 120px);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.story__hero img {
  display: block;
  width: 100%;
  height: clamp(360px, 56vw, 620px);
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.62) saturate(0.95);
}
/* Ornate gold frame overlay — sits above photo, transparent inside, user 25 Aug 2026 */
.story__frame {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
.story__hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px);
  color: #fdf6ed;
}
.story__hero-text .kicker {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: #fdf6ed;
  padding: 5px 12px;
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.story__hero-text h2 {
  font-family: "Fraunces", var(--font-display);
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
  color: #fdf6ed;
  text-shadow: 0 2px 6px oklch(20% 0.04 145 / 0.6);
  max-width: 880px;
}
.story__hero-text h2 em {
  font-style: italic;
  color: oklch(82% 0.10 70);
}

/* Segment: numbered, with text + optional photo */
.story__seg {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 1100px;
  margin: 0 auto var(--space-7);
  position: relative;
}
.story__seg-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.85;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: -0.04em;
  font-style: italic;
  margin-bottom: var(--space-3);
  display: inline-block;
}
.story__seg-num span {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
}
.story__seg-body h3 {
  font-family: "Fraunces", var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 var(--space-4);
  color: var(--fg);
  letter-spacing: -0.01em;
}
.story__seg-body p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: var(--fg);
  margin: 0 0 var(--space-4);
  max-width: 64ch;
}
.story__seg-body p:last-child { margin-bottom: 0; }
.story__seg-body em { color: var(--accent); font-style: italic; font-weight: 500; }
.story__seg-body strong { color: var(--fg); font-weight: 600; }

/* Text-only segment (no image) */
.story__seg--text-only {
  padding: var(--space-5) 0;
  border-top: 1px solid oklch(85% 0.01 70);
}
.story__seg--text-only .story__seg-body { max-width: 760px; margin: 0 auto; }

/* Split segment (text + photo) */
.story__seg--split {
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.story__seg--split .story__seg-num { grid-column: 1; }
.story__seg--split .story__seg-body { grid-column: 2; }
.story__seg--split .story__seg-photo { grid-column: 1; grid-row: 1 / span 2; }

.story__seg--reverse .story__seg-num { grid-column: 2; }
.story__seg--reverse .story__seg-body { grid-column: 2; }
.story__seg--reverse .story__seg-photo { grid-column: 1; grid-row: 1 / span 2; }

.story__seg-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px oklch(20% 0.02 145 / 0.14);
}
.story__seg-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.story__seg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: var(--space-4) 0 0;
}
.story__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  background: oklch(98% 0.01 80);
}

@media (max-width: 880px) {
  .story__seg--split,
  .story__seg--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .story__seg--split .story__seg-num,
  .story__seg--reverse .story__seg-num { grid-column: 1; }
  .story__seg--split .story__seg-body,
  .story__seg--reverse .story__seg-body { grid-column: 1; }
  .story__seg--split .story__seg-photo,
  .story__seg--reverse .story__seg-photo { grid-column: 1; grid-row: auto; }
  .story__seg-photo img { aspect-ratio: 4 / 3; }
}

/* Brand divider between story segments (REMOVED Aug 2026 — user wanted cleaner story flow) */

/* Social media brand mark (watermark) */
.social-media__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(40px, 6vw, 72px) auto 0;
  max-width: 200px;
}
.social-media__mark img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.6;
}

/* Closing pull-quote */
.story__close {
  max-width: 820px;
  margin: clamp(48px, 7vw, 96px) auto 0;
  padding: var(--space-7) var(--space-5);
  text-align: center;
  border-top: 1px solid oklch(85% 0.01 70);
  border-bottom: 1px solid oklch(85% 0.01 70);
  position: relative;
}
.story__close-mark {
  display: block;
  margin: 0 auto var(--space-4);
}
.story__close-quote {
  font-family: "Fraunces", var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--fg);
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}
.story__close-meta {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* legacy (kept for any external links) */
.story__quote {
  margin: var(--space-7) auto 0;
  max-width: 760px;
  padding: var(--space-6) var(--space-5);
  background: var(--accent-soft);
  border-radius: var(--radius-md);
  position: relative;
}
.story__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--fg);
  margin: 0 0 var(--space-3);
}
.story__quote .author {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ---------- Neighbours (Bolton News + reviews) ---------- */
.neighbours {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.neighbours__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-7);
}
.neighbours__head h2 {
  max-width: 18ch;
  margin: 0 auto var(--space-3);
}
.neighbours__lede {
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}
.neighbours__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .neighbours__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

/* Press card (Bolton News) */
.neighbours__press {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border);
}
.neighbours__press-photo {
  position: relative;
  width: 100%;
  background: oklch(35% 0.04 40);
  overflow: hidden;
}
.neighbours__press-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1280 / 450;
}
.neighbours__press-cap {
  padding: var(--space-5);
  background: var(--bg);
}
.neighbours__press-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  margin-bottom: var(--space-3);
  font-weight: 600;
}
.neighbours__press-cap h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.25;
  font-weight: 500;
  font-style: italic;
  color: var(--fg);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}
.neighbours__press-cap p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Quote card (Robertson North West) */
.neighbours__quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-6) var(--space-5) var(--space-5);
  background: var(--bg-dark);
  color: oklch(95% 0.012 80);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.neighbours__quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 100% 0%, oklch(48% 0.10 60 / 0.18) 0%, transparent 60%),
    radial-gradient(60% 80% at 0% 100%, oklch(78% 0.08 75 / 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.neighbours__quote > * { position: relative; }
.neighbours__quote-mark {
  display: block;
  margin-bottom: var(--space-4);
  opacity: 0.85;
}
.neighbours__quote-body {
  margin: 0 0 var(--space-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: oklch(95% 0.012 80);
}
.neighbours__quote-body p { margin: 0 0 1em; }
.neighbours__quote-body p:last-child { margin-bottom: 0; }
.neighbours__quote-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid oklch(95% 0.012 80 / 0.15);
  padding-top: var(--space-4);
  margin-top: auto;
}
.neighbours__quote-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: oklch(95% 0.012 80);
}
.neighbours__quote-org {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

/* Bottom strip */
.neighbours__more {
  text-align: center;
  margin-top: var(--space-7);
  color: var(--muted);
  font-size: 14px;
}
.neighbours__more-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 16px;
  margin: 0 4px;
}
.neighbours__more strong {
  color: var(--fg);
  font-weight: 600;
}
.neighbours__more a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.neighbours__more a:hover {
  color: var(--fg);
  border-bottom-color: var(--fg);
}

/* ---------- Reviews grid (10 cards, mixed source) ---------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
@media (max-width: 720px) {
  .reviews__grid { grid-template-columns: 1fr; }
}
.review {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition:
    opacity 600ms var(--ease-soft),
    transform 600ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft),
    border-color 260ms var(--ease-soft);
}
.review.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.review:hover {
  transform: translateY(-8px) scale(1.018);
  box-shadow: 0 18px 38px -16px rgba(40, 24, 12, 0.32), 0 4px 10px -4px rgba(40, 24, 12, 0.18);
  border-color: var(--accent);
  transition-delay: 0ms;  /* hover must respond instantly, not wait for stagger */
}
/* Stagger entrance so cards don't all snap in at once. Hover delay overridden above. */
.reviews__grid .review:nth-child(1)  { transition-delay: 0ms,   0ms,   0ms,   0ms; }
.reviews__grid .review:nth-child(2)  { transition-delay: 60ms,  60ms,  0ms,   0ms; }
.reviews__grid .review:nth-child(3)  { transition-delay: 120ms, 120ms, 0ms,   0ms; }
.reviews__grid .review:nth-child(4)  { transition-delay: 180ms, 180ms, 0ms,   0ms; }
.reviews__grid .review:nth-child(5)  { transition-delay: 240ms, 240ms, 0ms,   0ms; }
.reviews__grid .review:nth-child(6)  { transition-delay: 300ms, 300ms, 0ms,   0ms; }
.reviews__grid .review:nth-child(7)  { transition-delay: 360ms, 360ms, 0ms,   0ms; }
.reviews__grid .review:nth-child(8)  { transition-delay: 420ms, 420ms, 0ms,   0ms; }
.reviews__grid .review:nth-child(9)  { transition-delay: 480ms, 480ms, 0ms,   0ms; }
.reviews__grid .review:nth-child(10) { transition-delay: 540ms, 540ms, 0ms,   0ms; }
@media (prefers-reduced-motion: reduce) {
  .review { opacity: 1; transform: none; transition: box-shadow 200ms, border-color 200ms; }
  .review:hover { transform: none; }
  .reviews__grid .review { transition-delay: 0ms; }
}
.review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.review__src {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.review__src-logo {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.review__src--google     { background: oklch(96% 0.04 250); color: oklch(28% 0.10 250); }
.review__src--tripadvisor{ background: oklch(96% 0.07 145); color: oklch(28% 0.10 145); }
.review__src--google .review__src-logo { color: inherit; }
.review__stars {
  color: oklch(78% 0.16 70);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.review__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
  flex: 1;
}
.review__body p { margin: 0; }
.review__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}
.review__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.review__when {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.reviews__more {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.reviews__more a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  text-decoration: none;
  transition: color 180ms, border-color 180ms;
}
.reviews__more a:hover {
  color: var(--fg);
  border-bottom-color: var(--fg);
}

/* ---------- Values (3 columns) ---------- */
.values {
  background: var(--bg);
  padding-top: clamp(48px, 7vw, 96px);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.value-card {
  text-align: left;
  padding: var(--space-5);
  border-top: 1px solid var(--fg);
}
.value-card__icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.value-card h3 {
  font-size: 22px;
  margin-bottom: var(--space-3);
}
.value-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 880px) {
  .values__grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact {
  background: var(--surface);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.contact__hours h3,
.contact__where h3 {
  font-size: 28px;
  margin-bottom: var(--space-4);
}
.contact__where a.map-embed {
  display: block;
  aspect-ratio: 4/3;
  margin-top: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--accent-soft);
}
.contact__where a.map-embed img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-soft);
}
.contact__where a.map-embed:hover img { transform: scale(1.03); }
.contact__where a.map-embed::after {
  content: "Open in Google Maps ↗";
  position: absolute;
  inset: auto var(--space-3) var(--space-3) auto;
  background: white;
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-2);
}
.contact__address {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 var(--space-3);
}
.contact__phone {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--fg);
  display: inline-block;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  margin: var(--space-2) 0;
}
.contact__phone:hover { color: var(--accent); }

@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ---------- Inline menu preview ---------- */
.menu-preview {
  background: var(--bg);
  padding-bottom: clamp(48px, 7vw, 96px);
}
.menu-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.menu-preview__head h2 { max-width: 18ch; }
.menu-preview__head a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  color: var(--fg);
}
.menu-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
}
.menu-preview__item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  align-items: center;
  transition: transform 200ms var(--ease-soft), box-shadow 200ms var(--ease-soft);
}
.menu-preview__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.menu-preview__photo {
  width: 72px; height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--accent-soft);
}
.menu-preview__photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-preview__name {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
}
.menu-preview__price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
}
/* ============================================================
   HIRE & EVENTS PREVIEW
   ============================================================ */
.hire-preview {
  padding: var(--space-8) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.hire-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (max-width: 880px) {
  .hire-preview__grid { grid-template-columns: 1fr; }
}

.hire-preview__card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.6s var(--ease-soft), box-shadow 0.6s var(--ease-soft);
}
.hire-preview__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.hire-preview__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-dark);
  position: relative;
}
.hire-preview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-soft);
}
.hire-preview__card:hover .hire-preview__photo img {
  transform: scale(1.05);
}

.hire-preview__photo--placeholder img {
  filter: brightness(0.85) saturate(0.7);
}

.hire-preview__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: oklch(20% 0.025 145 / 0.85);
  color: #fdf6ed;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hire-preview__body {
  padding: var(--space-4) var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.hire-preview__body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  color: var(--fg);
}

.hire-preview__body p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.hire-preview__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 8px;
  display: inline-block;
}

/* ============================================================
   SOCIAL MEDIA
   ============================================================ */
.social-media {
  background: var(--bg);
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
  overflow: hidden;
}

.social-media::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
}

.social-media__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.social-media__head h2 {
  max-width: 16ch;
  margin: 0;
}

.social-media__head-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
  text-align: right;
}

.social-media__lede {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 38ch;
  margin: 0;
}

/* The big IG follow button */
.ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px 11px 18px;
  background: var(--bg-dark);
  color: oklch(95% 0.012 80);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.4s var(--ease-soft), background 0.3s ease;
  white-space: nowrap;
}
.ig-follow:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.ig-follow__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.ig-follow__count {
  font-size: 10px;
  opacity: 0.7;
  margin-left: 4px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
}

/* IG icon used elsewhere */
.ig-icon {
  display: inline-block;
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* The grid of thumbnails */
.social-media__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: var(--space-5);
}
@media (max-width: 880px) {
  .social-media__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .social-media__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Each thumbnail — a link to IG post */
.sm-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--accent-soft);
  display: block;
  cursor: pointer;
  border-radius: 2px;
  /* The link itself is an <a> tag; we override default link styles */
  text-decoration: none;
  color: inherit;
}
.sm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-soft), filter 0.4s ease;
  display: block;
}
.sm-thumb:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

/* Hover overlay: IG icon + "View post" */
.sm-thumb__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-soft);
  color: #fff;
}
.sm-thumb:hover .sm-thumb__overlay,
.sm-thumb:focus-visible .sm-thumb__overlay {
  opacity: 1;
}
.sm-thumb__overlay svg {
  width: 28px; height: 28px;
}
.sm-thumb__overlay span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Carousel badge — small "swipe" hint on some images */
.sm-thumb--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.sm-thumb--tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}
@media (max-width: 480px) {
  .sm-thumb--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
  .sm-thumb--tall { grid-row: auto; aspect-ratio: 1; }
}

/* Loading shimmer */
.sm-thumb.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--accent-soft) 0%, var(--surface) 50%, var(--accent-soft) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
  z-index: 1;
}
.sm-thumb.is-loaded::before { display: none; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Footer note */
.social-media__foot {
  margin-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.social-media__foot a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

/* ============================================================
   PHOTOSWIPE CUSTOM UI (View on IG button)
   ============================================================ */
/* "View on Instagram" — fixed overlay outside PhotoSwipe, fades with lightbox */
.pswp-ig-link {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 200000;       /* above PhotoSwipe's z-index (100000) */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.pswp-ig-link--enter {
  opacity: 0;
  transform: translate(-50%, 16px);
}
.pswp-ig-link--leave {
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
}
.pswp-ig-link:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  transform: translate(-50%, -2px);
}
.pswp-ig-link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}
/* Popular-grid override: same position, café Chico accent on hover, wider label */
.pswp-popular-link:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translate(-50%, -2px);
}
.pswp-popular-link .pswp-popular-link__label {
  max-width: min(72vw, 460px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Press section removed ---------- */

