/* ============================================
   Solera — Shared styles for inner pages
   ============================================ */

/* ---- Page Header ---- */
.page-header {
  background: #ffffff;
  padding: clamp(120px, 12vw, 180px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
}

/* ---- Team Page ---- */
.team-section {
  background: var(--cream);
}

.team-section-alt {
  background: var(--stone);
}

.team-member {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.team-member-card {
  grid-template-columns: 1fr;
  text-align: center;
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--stone);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(42, 42, 42, 0.12);
}

.team-member-card .team-photo-placeholder {
  max-width: 280px;
  margin: 0 auto;
}

.team-photo {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}

.team-photo-placeholder span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(42, 42, 42, 0.3);
  letter-spacing: 0.05em;
}

.team-role {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.7;
}

/* Chef feature — centered single-column layout */
.chef-feature {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.chef-photo-placeholder {
  max-width: 240px;
  margin: 0 auto 32px;
  aspect-ratio: 1 / 1;
}

.chef-photo {
  max-width: 280px;
  margin: 0 auto 32px;
}

.owners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* ---- Menu Page ---- */
.menu-tabs {
  background: #ffffff;
  border-bottom: 1px solid var(--stone);
  position: sticky;
  top: 56px;
  z-index: 50;
}

.menu-tabs-inner {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.menu-tab {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.45);
  padding: 20px 28px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.menu-tab:hover {
  color: var(--charcoal);
}

.menu-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.menu-page-section {
  background: var(--cream);
  min-height: 400px;
}

/* Coming Soon blocks */
.menu-coming-soon {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 0;
}

.coming-soon-icon {
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.6;
}

.coming-soon-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
}

.coming-soon-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.6;
}

/* Charcuterie Gallery */
.charcuterie-intro {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.charcuterie-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.charcuterie-gallery img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--stone);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .team-member {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .team-photo-placeholder {
    max-width: 260px;
    margin: 0 auto;
  }

  .owners-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .menu-tab {
    padding: 16px 20px;
    font-size: 0.75rem;
  }

  .charcuterie-gallery {
    grid-template-columns: 1fr;
  }
}
