/* ============================================================
   MASTERCRAFT — Shop Profile Styles
   ============================================================ */

.shop-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
}

.shop-hero-img {
  position: absolute;
  inset: 0;
}

.shop-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,12,0.3) 0%,
    rgba(14,14,12,0.6) 50%,
    rgba(14,14,12,0.97) 100%
  );
}

.shop-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 120px 0 60px;
}

.shop-hero-identity {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 16px;
}

.shop-logo-mark {
  width: 72px;
  height: 72px;
  background: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  flex-shrink: 0;
}

.shop-name {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
}

.shop-hero-tagline {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--light-gray);
  margin-top: 8px;
}

/* SHOP BODY */
.shop-body {
  padding: 80px 0 120px;
}

/* SPECIALTIES GRID */
.shop-specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.shop-specialty-card {
  background: var(--off-black);
  overflow: hidden;
}

.shop-specialty-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.shop-specialty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-specialty-card:hover .shop-specialty-img img {
  transform: scale(1.03);
}

.shop-specialty-body {
  padding: 24px;
}

.shop-specialty-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 10px;
}

.shop-specialty-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* GALLERY */
.shop-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 16px;
}

.shop-gallery-featured {
  grid-row: 1 / 3;
  overflow: hidden;
}

.shop-gallery-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.shop-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.shop-gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.shop-gallery-grid img:hover {
  opacity: 0.85;
}

.shop-gallery-note {
  font-size: 12px;
  color: var(--mid);
  font-style: italic;
}

/* TEAM */
.shop-team {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shop-team-member {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--off-black);
  border-left: 2px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}

.shop-team-member:hover {
  border-left-color: rgba(184,150,90,0.4);
}

.shop-team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--brass);
  border: 1px solid rgba(184,150,90,0.3);
  flex-shrink: 0;
}

.shop-team-info h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 4px;
}

.shop-team-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}

.shop-team-bio {
  font-size: 13px;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .shop-specialties-grid {
    grid-template-columns: 1fr;
  }
  .shop-gallery {
    grid-template-columns: 1fr;
  }
  .shop-gallery-featured {
    grid-row: auto;
  }
  .shop-hero-identity {
    flex-direction: column;
    align-items: flex-start;
  }
}
