/* ============================================================
   M'ARRICRIO — PAGE-SPECIFIC LAYOUTS
   ============================================================ */

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding-top: clamp(3rem, 2rem + 4vw, 6rem);
  padding-bottom: clamp(3rem, 2rem + 4vw, 6rem);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-10);
  align-items: center;
}
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero-media { order: -1; }
}
.hero-eyebrow { margin-bottom: var(--space-5); }
.hero h1 { margin-bottom: var(--space-5); }
.hero-lede { font-size: var(--fs-lead); color: var(--text-muted); max-width: 52ch; margin-bottom: var(--space-7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-8); }
.hero-badges { display: flex; flex-direction: column; gap: var(--space-3); }
.hero-badge { display: flex; align-items: center; gap: var(--space-3); font-size: 0.9rem; font-weight: 600; color: var(--c-espresso-2); }
.hero-badge__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-orange);
  color: var(--c-white);
}
.hero-badge__icon svg { width: 14px; height: 14px; }

.hero-media { position: relative; }
.hero-media__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-media__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media__ring {
  position: absolute;
  inset: -18px;
  border: 2px dashed rgb(221 138 62 / 0.4);
  border-radius: calc(var(--radius-xl) + 18px);
  z-index: -1;
}
.hero-media__chip {
  position: absolute;
  bottom: var(--space-6);
  left: calc(var(--space-6) * -1 + 1.25rem);
  background: var(--c-cream-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 240px;
}
@media (max-width: 500px) {
  .hero-media__chip { left: var(--space-2); padding: var(--space-3) var(--space-4); }
}
.hero-media__chip svg { width: 30px; height: 30px; color: var(--c-orange); flex-shrink: 0; }
.hero-media__chip strong { display: block; font-family: var(--font-display); color: var(--c-espresso); line-height: 1.2; }
.hero-media__chip span { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Simple page hero (about/menu/gallery/faq/contact) ---------- */
.page-hero {
  padding-block: clamp(3.5rem, 2.8rem + 3.5vw, 6.5rem) clamp(2.5rem, 2rem + 2vw, 4rem);
  text-align: center;
}
.page-hero .eyebrow { margin-inline: auto; }
.page-hero h1 { max-width: 16ch; margin-inline: auto; }
.page-hero p { max-width: 60ch; margin-inline: auto; font-size: var(--fs-lead); color: var(--text-muted); }

/* ---------- Home: story split ---------- */
.story-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (max-width: 900px) {
  .story-split { grid-template-columns: 1fr; }
}
.story-split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5/4;
}
.story-split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Locations grid ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
@media (max-width: 800px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* ---------- Bestsellers ---------- */
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .bestsellers-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

/* ---------- Values grid (about) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 960px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Home gallery teaser ---------- */
.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.gallery-teaser a { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-sm); }
.gallery-teaser img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.gallery-teaser a:hover img { transform: scale(1.08); }
@media (max-width: 700px) {
  .gallery-teaser { grid-template-columns: repeat(2, 1fr); }
  .gallery-teaser a:nth-child(n+5) { display: none; }
}

/* ---------- Delivery band (home) ---------- */
.delivery-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  border: 1.5px solid var(--c-border-soft);
  padding: var(--space-8);
}
@media (max-width: 860px) {
  .delivery-band { grid-template-columns: 1fr; }
}
.delivery-band__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-sm);
}
.delivery-band__media img { width: 100%; height: 100%; object-fit: cover; }
.delivery-zones { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-block: var(--space-5); }
.delivery-zones span {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4em 0.9em;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  color: var(--c-espresso-2);
}

/* ---------- Menu page: dessert/combo highlight strip ---------- */
.highlight-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
@media (max-width: 800px) { .highlight-strip { grid-template-columns: 1fr; } }
.highlight-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
}
.highlight-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.highlight-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(30 20 10 / 0.85), rgb(30 20 10 / 0.15) 60%);
}
.highlight-card__body { position: relative; z-index: 1; padding: var(--space-6); color: var(--c-cream-soft); width: 100%; }
.highlight-card__body h3 { color: var(--c-cream-soft); }
.highlight-card__body p { color: rgb(247 239 220 / 0.85); }
.highlight-card__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-orange-light);
}
.highlight-card__row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }

/* ---------- Contact: locations list detail ---------- */
.contact-locations { display: flex; flex-direction: column; gap: var(--space-6); }
