/* ============================================================
   CUSTOM — Per-store micro-overrides for Social Cafe By Party Platter
   This file is generated per restaurant. Override tokens or add
   store-specific rules here. Do NOT edit global.css, theme.css,
   or style.css directly for per-store changes.
   ============================================================ */

/* ------------------------------------------------------------
   Home FAQ Link Section
   Used on all /tags/ pages to link back to the home page FAQ.
   ------------------------------------------------------------ */
.gs-faq-link {
  background: var(--gs-faq-section-bg, #f2ebdc);
  padding: 60px 20px;
  position: relative;
}

.gs-faq-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gs-grain);
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.gs-faq-link-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--gs-faq-container-bg, #fffdf8);
  border: 1px solid var(--gs-border, rgba(27, 36, 39, 0.12));
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: var(--gs-shadow, 0 2px 6px rgba(22, 40, 47, 0.05), 0 14px 34px rgba(22, 40, 47, 0.09));
}

.gs-faq-link-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gs-primary-light, rgba(122, 22, 27, 0.08));
  color: var(--gs-primary, #7a161b);
  font-size: 1.6rem;
}

.gs-faq-link-title {
  font-family: var(--gs-font-heading, 'Cormorant Garamond', serif);
  font-weight: var(--gs-heading-weight, 600);
  color: var(--gs-dark, #1b2427);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin: 0 0 10px;
  letter-spacing: 0.3px;
}

.gs-faq-link-desc {
  font-family: var(--gs-font-body, 'Outfit', sans-serif);
  color: var(--gs-text, #3c474b);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 auto 22px;
  max-width: 520px;
}

.gs-faq-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gs-primary, #7a161b);
  color: var(--gs-white, #fff);
  text-decoration: none;
  padding: 12px 26px;
  border-radius: var(--gs-btn-radius, 3px);
  font-family: var(--gs-font-body, 'Outfit', sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px var(--gs-glow-soft, rgba(122, 22, 27, 0.3));
}

.gs-faq-link-btn:hover,
.gs-faq-link-btn:focus-visible {
  background: var(--gs-primary-dark, #5e1015);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--gs-glow, rgba(122, 22, 27, 0.4));
  color: var(--gs-white, #fff);
}

.gs-faq-link-btn i {
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}

.gs-faq-link-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .gs-faq-link {
    padding: 40px 16px;
  }
  .gs-faq-link-inner {
    padding: 32px 20px;
  }
}

/* ------------------------------------------------------------
   Meet the Chef Section (About page)
   ------------------------------------------------------------ */
.gs-chef {
  position: relative;
  background: var(--gs-bg-alt, #f2ebdc);
  padding: 96px 20px;
  overflow: hidden;
}

.gs-chef::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gs-grain);
  opacity: 0.28;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.gs-chef-inner {
  position: relative;
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 72px;
  align-items: center;
}

/* Media column */
.gs-chef-media {
  position: relative;
  isolation: isolate;
}

.gs-chef-media::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 62%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--gs-border-gold, rgba(95, 143, 39, 0.38));
  border-radius: 6px;
  z-index: -1;
}

.gs-chef-media::after {
  content: "";
  position: absolute;
  inset: auto auto -22px -22px;
  width: 55%;
  aspect-ratio: 1 / 1;
  background: var(--gs-primary, #7a161b);
  opacity: 0.08;
  border-radius: 6px;
  z-index: -1;
}

.gs-chef-media-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--gs-shadow-hover, 0 4px 10px rgba(22, 40, 47, 0.07), 0 24px 54px rgba(22, 40, 47, 0.16));
  background: var(--gs-primary-deep, #46080a);
}

.gs-chef-media-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gs-chef-media-frame:hover img {
  transform: scale(1.03);
}

.gs-chef-badge {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gs-white, #fff);
  color: var(--gs-primary, #7a161b);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--gs-font-body, 'Outfit', sans-serif);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(22, 40, 47, 0.18);
  border: 1px solid var(--gs-border-gold, rgba(95, 143, 39, 0.38));
}

.gs-chef-badge i {
  color: var(--gs-accent, #5f8f27);
  font-size: 1rem;
}

/* Content column */
.gs-chef-content {
  color: var(--gs-text, #3c474b);
  font-family: var(--gs-font-body, 'Outfit', sans-serif);
}

.gs-chef-tagline {
  display: inline-block;
  font-family: var(--gs-font-body, 'Outfit', sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gs-accent-dark, #446619);
  padding: 6px 14px;
  border: 1px solid var(--gs-border-gold, rgba(95, 143, 39, 0.38));
  border-radius: 999px;
  background: var(--gs-accent-light, rgba(95, 143, 39, 0.13));
  margin-bottom: 18px;
}

.gs-chef-content h2 {
  font-family: var(--gs-font-heading, 'Cormorant Garamond', serif);
  font-weight: var(--gs-heading-weight, 600);
  color: var(--gs-dark, #1b2427);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 6px;
  letter-spacing: 0.4px;
}

.gs-chef-role {
  font-family: var(--gs-font-heading, 'Cormorant Garamond', serif);
  font-style: italic;
  color: var(--gs-primary, #7a161b);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin: 0 0 20px;
  letter-spacing: 0.4px;
}

.gs-chef-divider {
  width: 68px;
  height: 2px;
  background: var(--gs-accent, #5f8f27);
  margin: 0 0 22px;
  border-radius: 2px;
}

.gs-chef-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 18px;
  color: var(--gs-text, #3c474b);
}

.gs-chef-highlights {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.gs-chef-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--gs-dark, #1b2427);
  font-weight: 500;
}

.gs-chef-highlights i {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gs-primary-light, rgba(122, 22, 27, 0.08));
  color: var(--gs-primary, #7a161b);
  font-size: 1.05rem;
}

/* Tablet */
@media (max-width: 960px) {
  .gs-chef {
    padding: 72px 20px;
  }
  .gs-chef-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    max-width: 640px;
  }
  .gs-chef-media {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .gs-chef {
    padding: 56px 16px;
  }
  .gs-chef-inner {
    gap: 48px;
  }
  .gs-chef-media::before {
    inset: -10px -10px auto auto;
  }
  .gs-chef-media::after {
    inset: auto auto -14px -14px;
  }
  .gs-chef-badge {
    font-size: 0.72rem;
    padding: 10px 16px;
    letter-spacing: 0.4px;
    bottom: -18px;
  }
  .gs-chef-content {
    text-align: left;
  }
  .gs-chef-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .gs-chef-highlights li {
    font-size: 0.92rem;
  }
  .gs-chef-highlights i {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
}
