/* ---- Version 2 only: the diner-classic layout ---------------------------
   Structure follows the reference diner layout (centred logo, circular hero
   badges, label-under-image grid, community columns). All colour, type and
   CSS is our own and shares the tokens in styles.css. */

.v2-hero { position: relative; }
.v2-hero__img { width: 100%; height: clamp(340px, 58vh, 560px); object-fit: cover; }
.v2-hero__band {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(180deg, rgba(33,24,19,0) 0%, rgba(33,24,19,.75) 100%);
  padding: var(--s6) 1rem var(--s4); text-align: center;
}
.v2-hero__band h1 {
  color: var(--cream); margin: 0;
  font-size: clamp(2.5rem, 8vw, 5.5rem); letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.v2-hero__band p {
  color: var(--cream); margin: var(--s1) auto 0; max-width: 46ch;
  text-shadow: 0 1px 12px rgba(0,0,0,.7);
}

/* Circular badge links overlapping the hero */
.v2-badges {
  position: relative; z-index: 2;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: var(--s5); margin-top: -70px; padding: 0 1rem;
}
.v2-badge { text-decoration: none; text-align: center; display: block; width: 150px; }
.v2-badge img {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
  border: 5px solid var(--cream); box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease);
}
.v2-badge:hover img { transform: scale(1.05); }
.v2-badge span {
  display: block; margin-top: 0.6rem;
  font-family: var(--font-label); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); font-size: 1rem;
}

/* Announcement band */
.v2-band { background: var(--cream); border-block: 1px solid var(--rule); text-align: center; }
.v2-band .container { padding-block: var(--s3); }
.v2-band .headline {
  font-family: var(--font-label); font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--red);
  margin: 0 auto; max-width: none;   /* auto margins: base p has a max-width */
}
.v2-band p { margin: 0.5rem auto 0; max-width: 60ch; }

/* Label-under-image tile grid on the red ground */
.v2-tiles {
  display: grid; gap: var(--s4) var(--s3);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
/* Lock to 3 across on desktop so the six tiles fill two even rows */
@media (min-width: 900px) { .v2-tiles { grid-template-columns: repeat(3, 1fr); } }
.v2-tile { text-align: center; text-decoration: none; display: block; }
.v2-tile__img { aspect-ratio: 1 / 1; overflow: hidden; background: rgba(0,0,0,.2); }
.v2-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.v2-tile:hover .v2-tile__img img { transform: scale(1.05); }
.v2-tile h3 {
  font-family: var(--font-label); font-weight: 400;
  font-size: 1.5rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); margin: var(--s2) 0 var(--s1);
}
.v2-tile .fauxbtn {
  display: inline-block; font-family: var(--font-label); font-size: 1rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream); border: 2px solid var(--rule-on-dark);
  padding: 0.6rem 1.4rem; border-radius: var(--radius); min-height: 44px;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.v2-tile:hover .fauxbtn { background: var(--cream); color: var(--red); border-color: var(--cream); }

/* Community columns */
.v2-community { display: grid; gap: var(--s4); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.v2-community figure { margin: 0; text-align: center; }
.v2-community img {
  width: 190px; height: 190px; border-radius: 50%; object-fit: cover;
  margin: 0 auto var(--s2); border: 4px solid var(--gold);
}
.v2-community h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 1.35rem; color: var(--cream); margin-bottom: var(--s1);
}
.v2-community p { margin-inline: auto; max-width: 38ch; }

@media (max-width: 620px) {
  .v2-badges { gap: var(--s3); margin-top: -52px; }
  .v2-badge, .v2-badge img { width: 116px; }
  .v2-badge img { height: 116px; }
}
