/* ============================================
   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;
}

/* Kitchen full menu */
.kitchen-menu {
  padding: 16px 0 24px;
}

/* Meal toggle (Lunch / Dinner) */
.meal-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(198, 169, 78, 0.3);
}

.meal-toggle-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.5);
  background: transparent;
  border: 1px solid rgba(42, 42, 42, 0.15);
  padding: 14px 36px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.meal-toggle-btn:first-child {
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.meal-toggle-btn:last-child {
  border-radius: 0 4px 4px 0;
}

.meal-toggle-btn:hover {
  color: var(--charcoal);
}

.meal-toggle-btn.active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.menu-add-note {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-top: 16px;
  padding: 12px;
  border-top: 1px solid rgba(198, 169, 78, 0.2);
}

@media (max-width: 600px) {
  .meal-toggle-btn {
    padding: 12px 28px;
    font-size: 0.8rem;
  }
}

.menu-group {
  margin-bottom: 56px;
}

.menu-group-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.menu-group-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 32px;
}

.menu-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
}

.menu-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.menu-item-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.75;
  margin: 0;
}

.menu-group-dressings {
  text-align: center;
  background: rgba(198, 169, 78, 0.06);
  border: 1px solid rgba(198, 169, 78, 0.18);
  border-radius: 8px;
  padding: 32px 24px;
}

.menu-dressings-list {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .menu-group {
    margin-bottom: 44px;
  }
  .menu-item-name {
    font-size: 1.1rem;
  }
  .menu-item-desc {
    font-size: 0.9rem;
  }
  .menu-dressings-list {
    font-size: 1rem;
    line-height: 2;
  }
}

/* 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 Boards Header */
.boards-header {
  max-width: 720px;
  margin: 0 auto 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(198, 169, 78, 0.3);
}

.boards-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.boards-sizes {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 2;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 12px;
}

.boards-sizes strong {
  font-weight: 500;
}

.boards-sizes em {
  font-style: italic;
  color: var(--charcoal);
  opacity: 0.7;
  font-size: 0.95rem;
  margin-left: 4px;
}

.board-divider {
  color: var(--gold);
  font-weight: 700;
  margin: 0 4px;
}

.boards-options {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.75;
  max-width: 540px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .boards-sizes {
    font-size: 1rem;
    line-height: 1.8;
  }
  .boards-sizes em {
    font-size: 0.85rem;
  }
  .board-divider {
    display: none;
  }
  .boards-sizes > span:not(.board-divider) {
    display: block;
    width: 100%;
  }
}

/* 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;
  }
}
