.food-profile-page{
  padding:18px 18px 8px;
}
.food-profile-shell{
  display:grid;
  gap:16px;
}
.food-profile-topbar{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  flex-wrap:wrap;
}
.food-profile-topbar__eyebrow{
  margin:0 0 6px;
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.food-profile-topbar__intro{
  margin:0;
  color:var(--muted);
}
.food-profile-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.food-profile-card,
.food-profile-media,
.food-profile-summary{
  border:1px solid color-mix(in oklab, var(--text) 10%, transparent);
  box-shadow:var(--shadow-2);
}
.food-profile-content{
  display:grid;
  gap:18px;
}
.food-profile-card,
.food-profile-media,
.food-profile-summary{
  border-radius:22px;
  background:var(--surface);
}
.food-profile-card,
.food-profile-summary{
  padding:22px;
}
.food-profile-card h2{
  margin:0 0 14px;
  font-size:1.08rem;
}
.food-profile-card--state{
  background:linear-gradient(180deg, color-mix(in oklab, var(--accent) 5%, var(--surface)) 0%, var(--surface) 100%);
}
.food-profile-state-copy{
  margin:8px 0 0;
  color:var(--muted);
}
.food-profile-hero{
  display:grid;
  grid-template-columns:minmax(0, 1.18fr) minmax(320px, .92fr);
  gap:18px;
  align-items:stretch;
}
.food-profile-media{
  position:relative;
  overflow:hidden;
  background:color-mix(in oklab, var(--surface-2) 82%, var(--bg) 18%);
}
.food-profile-slider{
  position:relative;
  height:100%;
}
.food-profile-slider__track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:100%;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
  aspect-ratio:16 / 10;
  min-height:320px;
  background:var(--surface-2);
  touch-action:pan-y pinch-zoom;
}
.food-profile-slider__track::-webkit-scrollbar{
  display:none;
}
.food-profile-slide{
  position:relative;
  scroll-snap-align:start;
  min-width:0;
  min-height:100%;
}
.food-profile-slide img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  background:var(--surface-2);
}
.food-profile-slider__nav{
  position:absolute;
  z-index:2;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid color-mix(in oklab, var(--text) 18%, transparent);
  background:color-mix(in oklab, var(--bg) 80%, transparent);
  color:var(--text);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:var(--shadow-2);
}
.food-profile-slider__nav[hidden]{
  display:none !important;
}
.food-profile-slider__nav:disabled{
  opacity:.55;
  cursor:default;
}
.food-profile-slider__nav--prev{
  left:12px;
}
.food-profile-slider__nav--next{
  right:12px;
}
.food-profile-slider__footer{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  background:linear-gradient(180deg, transparent 0%, rgba(0,0,0,.36) 100%);
}
.food-profile-slider__dots{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.food-profile-slider__dots[hidden],
.food-profile-slider__footer[hidden]{
  display:none !important;
}
.food-profile-slider__dot{
  width:10px;
  height:10px;
  padding:0;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.55);
  cursor:pointer;
}
.food-profile-slider__dot.is-active{
  background:#fff;
  transform:scale(1.1);
}
.food-profile-slider__counter{
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-shadow:0 1px 3px rgba(0,0,0,.32);
}
.food-profile-summary{
  display:flex;
  flex-direction:column;
  gap:16px;
  justify-content:center;
  background:linear-gradient(180deg, color-mix(in oklab, var(--accent) 7%, var(--surface)) 0%, var(--surface) 100%);
}
.food-profile-type{
  margin:0;
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
#pageTitle{
  margin:0;
  font-size:clamp(30px, 4vw, 42px);
  line-height:1.08;
}
.food-profile-subline{
  margin:0;
  color:var(--muted);
  font-size:clamp(16px, 2vw, 18px);
}
.food-profile-ctas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.food-profile-ctas .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.food-profile-ctas .btn[hidden]{
  display:none !important;
}
.food-profile-map-helper{
  margin:-4px 0 0;
  color:var(--muted);
  font-size:13px;
}
.food-profile-map-helper[hidden]{
  display:none !important;
}
.food-profile-meta,
.food-profile-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.food-profile-meta:empty,
.food-profile-highlights:empty{
  display:none;
}
.food-profile-meta-pill,
.food-profile-chip{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:8px 12px;
  border-radius:999px;
  background:color-mix(in oklab, var(--bg) 84%, var(--surface) 16%);
  border:1px solid color-mix(in oklab, var(--text) 9%, transparent);
  color:var(--text);
  font-size:14px;
  line-height:1.25;
}
.food-profile-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
.food-profile-facts{
  display:grid;
  gap:12px;
}
.food-profile-fact-row,
.food-profile-detail-row{
  display:grid;
  grid-template-columns:minmax(120px, 150px) minmax(0, 1fr);
  gap:12px;
  align-items:start;
}
.food-profile-fact-row + .food-profile-fact-row,
.food-profile-detail-row + .food-profile-detail-row{
  padding-top:12px;
  border-top:1px solid color-mix(in oklab, var(--text) 8%, transparent);
}
.food-profile-label{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
}
.food-profile-value,
.food-profile-value a{
  color:var(--text);
  overflow-wrap:anywhere;
}
.food-profile-value a{
  text-decoration:underline;
  text-underline-offset:2px;
}
.food-profile-groups{
  display:grid;
  gap:16px;
  margin-top:18px;
}
.food-profile-group{
  display:grid;
  gap:10px;
}
.food-profile-group[hidden]{
  display:none !important;
}
.food-profile-group h3{
  margin:0;
  font-size:13px;
  color:var(--muted);
  letter-spacing:.04em;
  text-transform:uppercase;
}
.food-profile-group__chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.food-profile-editorial{
  display:grid;
  gap:12px;
}
.food-profile-editorial p{
  margin:0;
  color:var(--muted);
}
.food-profile-editorial p:first-child{
  color:var(--text);
}
.food-profile-footer-note{
  margin:0;
  color:var(--muted);
  font-size:13px;
}
@media (max-width: 1080px){
  .food-profile-hero{
    grid-template-columns:1fr;
  }
  .food-profile-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px){
  .food-profile-page{
    padding-left:0;
    padding-right:0;
  }
  .food-profile-card,
  .food-profile-summary{
    padding:18px;
  }
  .food-profile-slider__track{
    min-height:240px;
  }
  .food-profile-grid{
    grid-template-columns:1fr;
  }
  .food-profile-fact-row,
  .food-profile-detail-row{
    grid-template-columns:1fr;
    gap:6px;
  }
  .food-profile-actions,
  .food-profile-ctas{
    width:100%;
  }
  .food-profile-actions .btn,
  .food-profile-ctas .btn{
    width:100%;
  }
  .food-profile-slider__nav{
    width:40px;
    height:40px;
  }
  .food-profile-slider__footer{
    padding:10px 12px;
  }
}
@media (prefers-reduced-motion: reduce){
  .food-profile-slider__track{
    scroll-behavior:auto;
  }
}
